From d8bda66d20784d7edc9b61c62b5015b09ddcf8d0 Mon Sep 17 00:00:00 2001 From: jxy918 Date: Mon, 11 Jun 2018 18:24:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=E4=BB=A3=E7=A0=81=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E7=BB=93=E6=9E=84=EF=BC=8C=20=E5=A2=9E=E5=8A=A0http?= =?UTF-8?q?=EF=BC=8Ctcp=E5=8D=8F=E8=AE=AE=E9=80=BB=E8=BE=91=E7=9B=AE?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 0 README.md | 14 +- app/GameServer.php | 83 + app/http/HttpTest.php | 18 + app/tcp/TcpTest.php | 30 + app/websock/CancelCard.php | 23 + app/websock/ChatMsg.php | 23 + app/websock/GetCard.php | 43 + app/websock/GetSingerCard.php | 25 + app/websock/IsDouble.php | 29 + app/websock/SendCard.php | 23 + app/websock/TurnCard.php | 26 + bin/game | 51 + bin/run.php | 2 +- client/tcp_client.php | 261 + composer.json | 7 +- conf/Config.php | 30 + conf/MainCmd.php | 13 + conf/Route.php | 43 + conf/SubCmdSys.php | 26 + core/AStrategy.php | 38 + core/BaseServer.php | 427 + core/Dispatch.php | 114 + core/GameConst.php | 25 + core/Log.php | 35 + core/MysqlPool.php | 38 + core/Packet.php | 70 + core/RedisPool.php | 32 + lib/JokerPoker.php | 613 + lib/protobuf/Person.php | 164 + log/server.log | 1 + log/sw_server.log | 355034 +++++++++++++++++++++ vendor/autoload.php | 7 + vendor/composer/ClassLoader.php | 445 + vendor/composer/LICENSE | 21 + vendor/composer/autoload_classmap.php | 9 + vendor/composer/autoload_namespaces.php | 9 + vendor/composer/autoload_psr4.php | 13 + vendor/composer/autoload_real.php | 52 + vendor/composer/autoload_static.php | 46 + vendor/composer/installed.json | 1 + 41 files changed, 357955 insertions(+), 9 deletions(-) mode change 100644 => 100755 Dockerfile create mode 100755 app/GameServer.php create mode 100755 app/http/HttpTest.php create mode 100755 app/tcp/TcpTest.php create mode 100755 app/websock/CancelCard.php create mode 100755 app/websock/ChatMsg.php create mode 100755 app/websock/GetCard.php create mode 100755 app/websock/GetSingerCard.php create mode 100755 app/websock/IsDouble.php create mode 100755 app/websock/SendCard.php create mode 100755 app/websock/TurnCard.php create mode 100755 bin/game create mode 100755 client/tcp_client.php create mode 100755 conf/Config.php create mode 100755 conf/MainCmd.php create mode 100755 conf/Route.php create mode 100755 conf/SubCmdSys.php create mode 100755 core/AStrategy.php create mode 100755 core/BaseServer.php create mode 100755 core/Dispatch.php create mode 100755 core/GameConst.php create mode 100755 core/Log.php create mode 100755 core/MysqlPool.php create mode 100755 core/Packet.php create mode 100755 core/RedisPool.php create mode 100755 lib/JokerPoker.php create mode 100755 lib/protobuf/Person.php create mode 100755 log/server.log create mode 100755 log/sw_server.log create mode 100755 vendor/autoload.php create mode 100755 vendor/composer/ClassLoader.php create mode 100755 vendor/composer/LICENSE create mode 100755 vendor/composer/autoload_classmap.php create mode 100755 vendor/composer/autoload_namespaces.php create mode 100755 vendor/composer/autoload_psr4.php create mode 100755 vendor/composer/autoload_real.php create mode 100755 vendor/composer/autoload_static.php create mode 100755 vendor/composer/installed.json diff --git a/Dockerfile b/Dockerfile old mode 100644 new mode 100755 diff --git a/README.md b/README.md index f1703f1..a0b98b4 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ ## 三,特性 -* 对websocket协议进行封装,异步处理任务 -* 实现前后端二进制封包解包,采用的是msgpack扩展,msgpack对数据进行了压缩,并实现粘包处理 +* 对websocket,http,tcp协议进行封装,异步处理任务 +* 实现前后端二进制封包解包,采用的是msgpack扩展,msgpack对数据进行了压缩,并实现粘包处理, 服务器加入了protobuf支付,tcp有测试例子 * 数据采用固定包头,包头4个字节存包体长度,包体前2个字节分别为cmd(主命令字),scmd(子命令字),后面为包体内容 * 采用策略模式解耦游戏中的每个协议逻辑 * 实现定义游戏开发cmd(主命令字)和scmd(子命令字)定义,cmd和scmd主要用来路由到游戏协议逻辑处理 @@ -36,7 +36,8 @@ * php 5.6 * php扩展: * swoole 1.9以上版本 -* msgpack +* msgpack +* protobuf ## 五,开始使用 @@ -49,6 +50,7 @@ ./core 框架服务器核心代码 ./lib 公共类库代码 ./app 游戏协议逻辑处理代码 +./conf 相关配置目录 ./log 日志目录 ``` @@ -57,9 +59,9 @@ * 2,进入bin目录,启动服务器 : ``` -./poker start 启动服务 -./poker stop 关闭服务 -./poker reload 服务重载, 优雅载入, 不需要启动服务, 可以载入所修改的逻辑 +./game start 启动服务 +./game stop 关闭服务 +./game reload 服务重载, 优雅载入, 不需要启动服务, 可以载入所修改的逻辑 ``` diff --git a/app/GameServer.php b/app/GameServer.php new file mode 100755 index 0000000..3ec8202 --- /dev/null +++ b/app/GameServer.php @@ -0,0 +1,83 @@ +db = new PdoDB(Config::getDbConf()); + //$this->db->connect(); + $conf = array( + 'host' => '192.168.1.85', + 'port' => 3308, + 'user' => 'web', + 'password' => 'aG98asg!($', + 'database' => 'accounts_mj' + ); + $this->db = new MysqlPool($conf); + $this->db = $this->db->get(); + } + + public function initRedis() { + //初始化redis + $redis_conf = Config::getRedisConf(); + $this->redis = new \Redis(); + $this->redis->connect($redis_conf['host'], $redis_conf['port']); + } +} + diff --git a/app/http/HttpTest.php b/app/http/HttpTest.php new file mode 100755 index 0000000..d318f20 --- /dev/null +++ b/app/http/HttpTest.php @@ -0,0 +1,18 @@ +_params['data']; + $obj = new Person(); + $obj->parseFromString($data); + echo $obj->getName() ."\n"; + echo $obj->getEmail() ."\n"; + echo $obj->getMoney() ."\n"; + echo $obj->getId() . "\n"; + + //原样返回protobuf数据 + $data = Packet::packEncode($data, 1, 1, 'protobuf'); + return $data; + } +} \ No newline at end of file diff --git a/app/websock/CancelCard.php b/app/websock/CancelCard.php new file mode 100755 index 0000000..5e79cca --- /dev/null +++ b/app/websock/CancelCard.php @@ -0,0 +1,23 @@ +_params['data']); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::CANCEL_CARD_RESP); + return $data; + } +} \ No newline at end of file diff --git a/app/websock/ChatMsg.php b/app/websock/ChatMsg.php new file mode 100755 index 0000000..a4c8a33 --- /dev/null +++ b/app/websock/ChatMsg.php @@ -0,0 +1,23 @@ +_params['data']); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::CHAT_MSG_RESP); + return $data; + } +} diff --git a/app/websock/GetCard.php b/app/websock/GetCard.php new file mode 100755 index 0000000..4ee364c --- /dev/null +++ b/app/websock/GetCard.php @@ -0,0 +1,43 @@ +testDB(); +// $this->testRedis(); + return $data; + } + + /** + * 测试db,根据自己情况使用 + */ + public function testDB() { + $sql = 'Call sp_account_get_by_uid(1000006)'; + $sql_data = $this->_params['db']->queryAll($sql, ''); + var_dump(__CLASS__.'=======>',$sql_data); + } + + /** + * 测试redis,,根据自己情况使用 + */ + public function testRedis() { + $res = $this->_params['redis']->set('test', 'aaaaaaaaceshithis 这是一个测试程序'); + var_dump(__CLASS__.'=======>redis',$res); + } +} \ No newline at end of file diff --git a/app/websock/GetSingerCard.php b/app/websock/GetSingerCard.php new file mode 100755 index 0000000..fe78af2 --- /dev/null +++ b/app/websock/GetSingerCard.php @@ -0,0 +1,25 @@ +$card); + $data = Packet::packFormat('OK', 0, $data); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::GET_SINGER_CARD_RESP); + return $data; + } +} \ No newline at end of file diff --git a/app/websock/IsDouble.php b/app/websock/IsDouble.php new file mode 100755 index 0000000..854afc0 --- /dev/null +++ b/app/websock/IsDouble.php @@ -0,0 +1,29 @@ +_params['data']['card']) ? $this->_params['data']['card'] : 2; ;//明牌 + $pos = isset($this->_params['data']['pos']) && ($this->_params['data']['pos'] < 4) ? intval($this->_params['data']['pos']) : 2;//我选中的位置 0123 + $res = JokerPoker::getIsDoubleCard($card, $pos); + $res['bean'] = 0; + $res['bet'] = 0; + $data = Packet::packFormat('OK', 0, $res); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::IS_DOUBLE_RESP); + return $data; + } +} \ No newline at end of file diff --git a/app/websock/SendCard.php b/app/websock/SendCard.php new file mode 100755 index 0000000..fddeb24 --- /dev/null +++ b/app/websock/SendCard.php @@ -0,0 +1,23 @@ +_params['data']); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::SEND_CARD_RESP); + return $data; + } +} \ No newline at end of file diff --git a/app/websock/TurnCard.php b/app/websock/TurnCard.php new file mode 100755 index 0000000..3cd939b --- /dev/null +++ b/app/websock/TurnCard.php @@ -0,0 +1,26 @@ +_params['data']['card']) ? $this->_params['data']['card'] : array(); + $card = JokerPoker::getFiveCard($card); + $res = JokerPoker::getCardType($card); + $data = Packet::packFormat('OK', 0, $res); + $data = Packet::packEncode($data, MainCmd::CMD_SYS, SubCmdSys::TURN_CARD_RESP); + return $data; + } +} \ No newline at end of file diff --git a/bin/game b/bin/game new file mode 100755 index 0000000..2747127 --- /dev/null +++ b/bin/game @@ -0,0 +1,51 @@ +#!/bin/bash +function startgame() +{ + printf "staring GameServer...\r\n" + php run.php >> ../log/server.log 2>&1 + printf $? + if [ $? == 0 ]; then + printf "GameServer start OK\r\n" + return 0 + else + printf "GameServer start FAIL\r\n" + return 1 + fi +} + +function stopgame() +{ + printf "stoping GameServer...\r\n" + $(ps -ef | grep "game" | grep -v "grep" | awk '{print $2 }' | xargs kill -9) + PROCESS_NUM2=$(ps -ef | grep "game" | grep -v "grep" | awk '{print $2 }' | wc -l) + if [ $PROCESS_NUM2 == 0 ]; then + printf "GameServer stop OK\r\n" + return 0 + else + printf "GameServer stop FAIL\r\n" + return 1 + fi +} + +function reload() +{ + cmd=$(pidof game_master_Game_App_GameServer) + printf $cmd + kill -USR1 "$cmd" + printf "Reloaded is OK \r\n" +} + +if [ $1 == "start" ] +then + stopgame + sleep 1 + startgame +elif [ $1 == "stop" ] +then + stopgame +elif [ $1 == "reload" ] +then + reload +else + printf "Please make sure the positon variable is start or stop.\r\n" +fi diff --git a/bin/run.php b/bin/run.php index 4e7061d..ff30d92 100755 --- a/bin/run.php +++ b/bin/run.php @@ -2,7 +2,7 @@ date_default_timezone_set('Asia/Shanghai'); header("Content-type: text/html; charset=utf-8"); -use \Game\Core\GameServer; +use \Game\App\GameServer; require __DIR__ .'/../vendor/autoload.php'; diff --git a/client/tcp_client.php b/client/tcp_client.php new file mode 100755 index 0000000..d18d6f5 --- /dev/null +++ b/client/tcp_client.php @@ -0,0 +1,261 @@ + $code, + "msg" => $msg, + "data" => $data, + ); + return $pack; + } + + /** + * 打包数据,固定包头,4个字节为包头(里面存了包体长度),包体前2个字节为 + */ + public static function packEncode($data, $cmd = 1, $scmd = 1, $format='msgpack', $type = "tcp") { + if ($type == "tcp") { + if($format == 'msgpack') { + $sendStr = msgpack_pack($data); + } else { + $sendStr = $data; + } + $sendStr = pack('N', strlen($sendStr) + 2) . pack("C2", $cmd, $scmd). $sendStr; + return $sendStr; + } else { + return self::packFormat("packet type wrong", 100006); + } + } + + /** + * 解包数据 + */ + public static function packDecode($str, $format='msgpack') { + $header = substr($str, 0, 4); + if(strlen($header) != 4) { + return self::packFormat("packet length invalid", 100007); + } else { + $len = unpack("Nlen", $header); + $len = $len["len"]; + $cmd = unpack("Ccmd/Cscmd", substr($str, 4, 6)); + $result = substr($str, 6); + if ($len != strlen($result) + 2) { + //结果长度不对 + return self::packFormat("packet length invalid", 100007); + } + + if($format == 'msgpack') { + $result = msgpack_unpack($result); + } + + if(empty($result)) { + //结果长度不对 + return self::packFormat("packet data is empty", 100008); + } + + $result = self::packFormat("OK", 0, $result); + $result['cmd'] = $cmd['cmd']; + $result['scmd'] = $cmd['scmd']; + $result['len'] = $len + 4; + return $result; + } + } +} + + + +/** + * Person message + */ +class Person extends \ProtobufMessage +{ + /* Field index constants */ + const NAME = 1; + const ID = 2; + const EMAIL = 3; + const MONEY = 4; + + /* @var array Field descriptors */ + protected static $fields = array( + self::NAME => array( + 'name' => 'name', + 'required' => true, + 'type' => \ProtobufMessage::PB_TYPE_STRING, + ), + self::ID => array( + 'name' => 'id', + 'required' => true, + 'type' => \ProtobufMessage::PB_TYPE_INT, + ), + self::EMAIL => array( + 'name' => 'email', + 'required' => false, + 'type' => \ProtobufMessage::PB_TYPE_STRING, + ), + self::MONEY => array( + 'name' => 'money', + 'required' => false, + 'type' => \ProtobufMessage::PB_TYPE_DOUBLE, + ), + ); + + /** + * Constructs new message container and clears its internal state + */ + public function __construct() + { + $this->reset(); + } + + /** + * Clears message values and sets default ones + * + * @return null + */ + public function reset() + { + $this->values[self::NAME] = null; + $this->values[self::ID] = null; + $this->values[self::EMAIL] = null; + $this->values[self::MONEY] = null; + } + + /** + * Returns field descriptors + * + * @return array + */ + public function fields() + { + return self::$fields; + } + + /** + * Sets value of 'name' property + * + * @param string $value Property value + * + * @return null + */ + public function setName($value) + { + return $this->set(self::NAME, $value); + } + + /** + * Returns value of 'name' property + * + * @return string + */ + public function getName() + { + $value = $this->get(self::NAME); + return $value === null ? (string)$value : $value; + } + + /** + * Sets value of 'id' property + * + * @param integer $value Property value + * + * @return null + */ + public function setId($value) + { + return $this->set(self::ID, $value); + } + + /** + * Returns value of 'id' property + * + * @return integer + */ + public function getId() + { + $value = $this->get(self::ID); + return $value === null ? (integer)$value : $value; + } + + /** + * Sets value of 'email' property + * + * @param string $value Property value + * + * @return null + */ + public function setEmail($value) + { + return $this->set(self::EMAIL, $value); + } + + /** + * Returns value of 'email' property + * + * @return string + */ + public function getEmail() + { + $value = $this->get(self::EMAIL); + return $value === null ? (string)$value : $value; + } + + /** + * Sets value of 'money' property + * + * @param double $value Property value + * + * @return null + */ + public function setMoney($value) + { + return $this->set(self::MONEY, $value); + } + + /** + * Returns value of 'money' property + * + * @return double + */ + public function getMoney() + { + $value = $this->get(self::MONEY); + return $value === null ? (double)$value : $value; + } +} + +//测试发送protobuf 发送请求 +$client = new swoole_client(SWOOLE_SOCK_TCP); +if (!$client->connect('127.0.0.1', 9502, -1)) +{ + exit("connect failed. Error: {$client->errCode}\n"); +} + +$obj = new Person(); +$obj->setName('hellojammy'); +$obj->setId(2); +$obj->setEmail('helloxxx@foxmail.com'); +$obj->setMoney(1988894.995); +$packed = $obj->serializeToString(); +$data = Packet::packEncode($packed, 1, 1,'protobuf','tcp'); + +$client->send($data); + +//接受服务器返回数据 +$res = $client->recv(); +$back = Packet::packDecode($res,'protobuf'); +//解析格式化数据 +$data = $back['data']; +$obj->parseFromString($data); +echo $obj->getName() ."\n"; +echo $obj->getEmail() ."\n"; +echo $obj->getMoney() ."\n"; +echo $obj->getId() . "\n"; +print_r($data); +$client->close(); diff --git a/composer.json b/composer.json index 8c4ce0b..7d3b515 100755 --- a/composer.json +++ b/composer.json @@ -1,12 +1,14 @@ { "name": "jxy918/swoole-game", + "type": "library", "description": "基于swoole的H5游戏服务器开发框架", "keywords": ["swoole", "game", "html5"], "homepage": "https://github.com/jxy918/swoole-game", "require": { "php": ">=5.6", "ext-swoole": ">=1.9.0", - "ext-msgpack": "*" + "ext-msgpack": "*", + "ext-protobuf": "*" }, "config": { "bin-dir": "bin" @@ -21,7 +23,8 @@ "psr-4": { "Game\\Core\\": "core", "Game\\Lib\\": "lib", - "Game\\App\\": "app" + "Game\\Conf\\": "conf", + "Game\\App\\": "app" } } } \ No newline at end of file diff --git a/conf/Config.php b/conf/Config.php new file mode 100755 index 0000000..e4513f4 --- /dev/null +++ b/conf/Config.php @@ -0,0 +1,30 @@ +'mysql', + 'host'=>'192.168.1.85:3308', + 'user'=>'web', + 'passwd'=>'aG98asg!($', + 'name'=>'accounts_mj', + 'setname'=>true, + 'charset'=> 'utf8', + 'persistent'=>false + ); + return $db; + } + + public static function getRedisConf() { + //redis配置,需要用时可以启用 + $redis = array( + 'host'=>'192.168.7.196', + 'port'=>6379 + ); + return $redis; + } +} \ No newline at end of file diff --git a/conf/MainCmd.php b/conf/MainCmd.php new file mode 100755 index 0000000..2d2531d --- /dev/null +++ b/conf/MainCmd.php @@ -0,0 +1,13 @@ +array( + SubCmdSys::GET_CARD_REQ=>'GetCard', + SubCmdSys::SEND_CARD_REQ=>'SendCard', + SubCmdSys::TURN_CARD_REQ=>'TurnCard', + SubCmdSys::CANCEL_CARD_REQ=>'CancelCard', + SubCmdSys::IS_DOUBLE_REQ=>'IsDouble', + SubCmdSys::GET_SINGER_CARD_REQ=>'GetSingerCard', + SubCmdSys::CHAT_MSG_REQ=>'ChatMsg', + ), + ); + + /** + * TCP路由配置,websocke配置和tcp配置需要先去配置(MainCmd)主命令子和(SubCmdSys)子主命令字配置文件 + * @var array + */ + public static $tcp_map = array( + MainCmd::CMD_TCP_SYS=>array( + SubCmdSys::TCP_GET_HEART_ASK=>'TcpTest', + ), + ); + + /** + * HTTP简单路由配置,注意http不区分主命令字和子命令字,直接用类名来转发路由逻辑 + * @var array + */ + public static $http_map = array( + 'HttpTest' + ); +} ; \ No newline at end of file diff --git a/conf/SubCmdSys.php b/conf/SubCmdSys.php new file mode 100755 index 0000000..eb70f1b --- /dev/null +++ b/conf/SubCmdSys.php @@ -0,0 +1,26 @@ +_params = $params; + } + + /** + * 执行方法,每条游戏协议,实现这个方法就行 + */ + abstract public function exec(); + + /** + * 服务器广播消息, 此方法是给所有的连接客户端, 广播消息 + */ + protected function Broadcast($serv, $data) { + foreach($serv->connections as $fd) { + $serv->push($fd, $data, WEBSOCKET_OPCODE_BINARY); + } + } +} diff --git a/core/BaseServer.php b/core/BaseServer.php new file mode 100755 index 0000000..50896dd --- /dev/null +++ b/core/BaseServer.php @@ -0,0 +1,427 @@ + 3, + 'open_length_check' => 1, + 'package_length_type' => 'N', + 'package_length_offset' => 0, + 'package_body_offset' => 4, + + 'package_max_length' => 2097152, // 1024 * 1024 * 2, + 'buffer_output_size' => 3145728, //1024 * 1024 * 3, + 'pipe_buffer_size' => 33554432, // 1024 * 1024 * 32, + + 'heartbeat_check_interval' => 30, + 'heartbeat_idle_time' => 60, + +// 'open_cpu_affinity' => 1, + +// 'reactor_num' => 32,//建议设置为CPU核数 x 2 新版会自动设置 cpu个数 + 'max_conn'=>2000, + 'worker_num' => 2, + 'task_worker_num' => 4,//生产环境请加大,建议1000 + + 'max_request' => 0, //必须设置为0,否则会导致并发任务超时,don't change this number + 'task_max_request' => 2000, + +// 'daemonize'=>1, +// 'log_level' => 2, //swoole 日志级别 Info + 'backlog' => 3000, + 'log_file' => '../log/sw_server.log',//swoole 系统日志,任何代码内echo都会在这里输出 +// 'task_tmpdir' => '/dev/shm/swtask/',//task 投递内容过长时,会临时保存在这里,请将tmp设置使用内存 + +// 'document_root' => '/data/web/test/myswoole/poker/client', +// 'enable_static_handler' => true, + ); + + /** + * tcp服务器设置 + */ + protected $tcp_config = array(); + + /** + * http服务器设置 + */ + protected $http_config = array(); + + /** + * 单例模式,防止对象被克隆 + */ + private function __clone() {} + + /** + * 单例模式,防止对象被克隆 + */ + private function __construct() {} + + /** + * 获取单例对象 + * @param int uid 用户UID + * @param string token 用户Token + * @return object + */ + public static function getInstance() { + if (self::$_instance == null) { + self::$_instance = new static(); + } + return self::$_instance; + } + + /** + * 设置tcp的配置文件,默认不设置 + * @param array $config + * @return null + */ + public function setTcpConf($config = array()) { + $this->tcp_config = $config; + return self::$_instance; + } + + /** + * 设置Http设置 + * @param array $config + * @return null + */ + public function setHttpConf($config = array()) { + $this->http_config = $config; + return self::$_instance; + } + + /** + * 设置websocke设置,默认不设置 + * @param array $config + * @return null + */ + public function setWebsockConf($config = array()) { + $this->config = $config; + return self::$_instance; + } + + /** + * 初始化服务器 + */ + public function initServer() { + //开启websocket服务器 + $this->server = new \Swoole\Websocket\Server(GameConst::GM_SERVER_IP, GameConst::GM_PROTOCOL_WEBSOCK_PORT); + $this->server->set($this->config); + //如果http端口有设置, 将开启http协议 + if($this->is_open_http) { + //http server + $httpserver = $this->server->listen(GameConst::GM_SERVER_IP, GameConst::GM_PROTOCOL_HTTP_PORT, SWOOLE_SOCK_TCP); + } + //如果tcp端口有设置, 将开启tcp协议 + if($this->is_open_tcp) { + //tcp server + $tcpserver = $this->server->listen(GameConst::GM_SERVER_IP, GameConst::GM_PROTOCOL_TCP_PORT, SWOOLE_SOCK_TCP); + $tcpserver->on('Receive', array($this, 'onReceive')); + $tcpserver->set($this->tcp_config); + } + + //init websocket server + $this->server->on('Start', array($this, 'onStart')); + $this->server->on('ManagerStart', array($this, 'onManagerStart')); + $this->server->on('ManagerStop', array($this, 'onManagerStop')); + //websocket服务器 + $this->server->on('Open', array($this, 'onOpen')); + $this->server->on('Message', array($this, 'onMessage')); + //http服务器只使用这个事件 + $this->server->on('Request', array($this, 'onRequest')); + $this->server->on('WorkerStart', array($this, 'onWorkerStart')); + $this->server->on('WorkerError', array($this, 'onWorkerError')); + $this->server->on('Task', array($this, 'onTask')); + $this->server->on('Finish', array($this, 'onFinish')); + $this->server->on('Close', array($this, 'onClose')); + $this->init($this->server); + return self::$_instance; + } + + /** + * 附件服务器初始化,例如:such as swoole atomic table or buffer 可以放置swoole的计数器,table等 + */ + abstract protected function init($serv); + + /** + * WorkerStart时候可以调用, //require_once() 你要加载的处理方法函数等 what's you want load (such as framework init) + * 比如需要动态加载的东西,可以做到无缝重启逻辑 + */ + abstract protected function initReload($server, $worker_id); + + /** + * 服务器启动 + */ + public function start() { + $this->server->start(); + } + + //服务开始回调 + public function onStart($serv) { + swoole_set_process_name(GameConst::GM_PROCESS_NAME_PREFIX."_master_".$this->getClassNanme()); + Log::show("MasterPid={$serv->master_pid}"); + Log::show("ManagerPid={$serv->manager_pid}"); + Log::show("Server: start.Swoole version is [" . SWOOLE_VERSION . "]"); + } + + //管理进程启动回调 + public function onManagerStart($serv) { + Log::show("onManagerStart:"); + swoole_set_process_name(GameConst::GM_PROCESS_NAME_PREFIX."_manager_".$this->getClassNanme()); + } + + //管理进程关闭回调 + public function onManagerStop($serv) { + Log::show("onManagerStop:"); + $serv->shutdown(); + } + + //ws连接回调 + public function onOpen($serv, $frame) { + Log::show("onOpen connection open: ".$frame->fd); + } + + //tcp连接回调 + public function onConnect($serv, $fd) { + Log::show("onConnect: connected..."); + } + + //ws投递任务 + public function onMessage($serv, $frame) { + Log::show("Message: Start"); + $send['protocol'] = GameConst::GM_PROTOCOL_WEBSOCK; + $send['data'] = $frame->data; + $send['fd'] = $frame->fd; + $this->server->task($send, -1, function ($serv, $task_id, $data) use ($frame) { + if(!empty($data)) { + $serv->push($frame->fd, $data, WEBSOCKET_OPCODE_BINARY); + } + }); + } + + //http投递任务 + public function onRequest($request, $response) { + Log::show("Request: Start"); + $send['protocol'] = GameConst::GM_PROTOCOL_HTTP; + $send['data'] = $request->server; + $send['fd'] = $request->fd; + $this->server->task($send, -1, function ($serv, $task_id, $data) use ($response) { + if(!empty($data)) { + $response->end($data); + } + }); + } + + //tcp投递任务 + public function onReceive($serv, $fd, $from_id, $data) { + Log::show("onReceive: start"); + $send['protocol'] = GameConst::GM_PROTOCOL_TCP; + $send['data'] = $data; + $send['fd'] = $fd; + $this->server->task($send, -1, function ($serv, $task_id, $data) use ($fd) { + if(!empty($data)) { + $serv->send($fd, $data); + } + }); + } + + //worker进程开启回调 + public function onWorkerStart($server, $worker_id) { + $istask = $server->taskworker; + Log::show("onWorkerStart:"); + if ($istask) { + $this->initReload($server, $worker_id); + swoole_set_process_name(GameConst::GM_PROCESS_NAME_PREFIX."_task{$worker_id}_".$this->getClassNanme()); + Log::show("Task work_id is {$worker_id}"); + } else { + swoole_set_process_name(GameConst::GM_PROCESS_NAME_PREFIX."_worker{$worker_id}_".$this->getClassNanme()); + Log::show("Worker work_id is {$worker_id}"); + } + } + + //worker进程错误回调 + public function onWorkerError($server, $worker_id, $worker_pid, $exit_code) { + Log::show("onWorkerError: worker_id={$worker_id} worker_pid={$worker_pid} exit_code={$exit_code}"); + } + + //任务进程回调 + public function onTask($serv, $task_id, $src_worker_id, $data) { + $data = $this->doWork($serv, $task_id, $src_worker_id, $data); + Log::show("onTask: task_id={$task_id} woker_id={$src_worker_id}"); + return $data; + } + + //任务结束后回调处理, 高版本可以自定会回调函数 + public function onFinish($serv, $task_id, $data) { + Log::show("onFinish"); + } + + //服务器关闭回调 + public function onClose($serv, $fd) { + Log::show("onClose connection close: {$fd}"); + } + + public function __destruct() { + Log::show('Server Was Shutdown...'); + $this->server->shutdown(); + } + + /** + * 获取被调用的类名称 + * @return mixed + */ + public function getClassNanme() { + $classname = get_called_class(); + $classname = str_replace("\\", '_', $classname); + return $classname; + } + + /** + * 此业务主要是开启tcp协议时才有用,业务实际处理代码仍这里,return the result 使用return返回处理结果//throw new Exception("asbddddfds",1231); + * 根据协议来进行相关逻辑处理,增加tcp,webscoket,http协议的路由转发处理,自理可以继承重写方法 + * @param $serv + * @param $task_id + * @param $src_worker_id + * @param $from_data + * @return array|string + */ + public function doWork($serv, $task_id, $src_worker_id, $from_data) { + $protocol = isset($from_data['protocol']) ? $from_data['protocol'] : 0; + switch ($protocol) { + case GameConst::GM_PROTOCOL_WEBSOCK: + $back = $this->webSockWork($serv, $task_id, $src_worker_id, $from_data); + break; + case GameConst::GM_PROTOCOL_TCP: + $back = $this->tcpWork($serv, $task_id, $src_worker_id, $from_data); + break; + case GameConst::GM_PROTOCOL_HTTP: + $back = $this->httpWork($serv, $task_id, $src_worker_id, $from_data); + break; + default: + $back = 'protocol is not foound'; + break; + } + return $back; + } + + /** + * 处理websock数据 + * @param $serv + * @param $task_id + * @param $src_worker_id + * @param $from_data + * @return array + */ + public function websockWork($serv, $task_id, $src_worker_id, $from_data) { + $back = array(); + $data = Packet::packDecode($from_data['data']); + if(isset($data['code']) && $data['code'] == 0 && isset($data['msg']) && $data['msg'] == 'OK') { + Log::show('Recv <<< cmd='.$data['cmd'].' scmd='.$data['scmd'].' len='.$data['len'].' data='.json_encode($data['data'])); + //转发请求,代理模式处理,websocket路由到相关逻辑 + $data['serv'] = $serv; + $data['protocol'] = GameConst::GM_PROTOCOL_WEBSOCK; + $back = $this->dispatch($data); + Log::show('Tcp Strategy <<< data='.$back, GameConst::GM_LOG_LEVEL_DEBUG); + if(!empty($back)) { + return $back; + } + } else { + Log::show($data['msg']); + } + } + + /** + * 处理tcp数据 + * @param $serv + * @param $task_id + * @param $src_worker_id + * @param $from_data + * @return array + */ + public function tcpWork($serv, $task_id, $src_worker_id, $from_data) { + $back = array(); + $data = Packet::packDecode($from_data['data'], 'protobuf'); + if(isset($data['code']) && $data['code'] == 0 && isset($data['msg']) && $data['msg'] == 'OK') { + Log::show('Recv <<< cmd='.$data['cmd'].' scmd='.$data['scmd'].' len='.$data['len'].' data='.json_encode($data['data'])); + //转发请求,代理模式处理,websocket路由到相关逻辑 + //$data['serv'] = $serv; + $data['protocol'] = GameConst::GM_PROTOCOL_TCP; + $back = $this->dispatch($data); + Log::show('Tcp Strategy <<< data='.$back, GameConst::GM_LOG_LEVEL_DEBUG); + if(!empty($back)) { + return $back; + } + } else { + Log::show($data['msg']); + } + } + + /** + * 处理http数据 + * @param $serv + * @param $task_id + * @param $src_worker_id + * @param $from_data + * @return array + */ + public function httpWork($serv, $task_id, $src_worker_id, $from_data) { + //处理路由设置 + $cmd = isset($from_data['data']['path_info']) ? trim($from_data['data']['path_info']) : ''; + $query_string = isset($from_data['data']['query_string']) ? trim($from_data['data']['query_string']) : ''; + parse_str($query_string, $param); + //转发请求,代理模式处理,websocket路由到相关逻辑 + $data['cmd'] = str_replace('/','',$cmd); + $data['param'] = $param; + $data['serv'] = $serv; + $data['protocol'] = GameConst::GM_PROTOCOL_HTTP; + $back = $this->dispatch($data); + Log::show('Http Strategy <<< data='.$back, GameConst::GM_LOG_LEVEL_DEBUG); + return $back; + } + + /** + * 根据路由策略处理逻辑,并返回数据 + * @param $data + * @return string + */ + public function dispatch($data) { + $obj = new Dispatch($data); + $back = ''; + if(!empty($obj->getStrategy())) { + $back = $obj->exec(); + } else { + if ($data['protocol'] == GameConst::GM_PROTOCOL_HTTP) {; + $back = "

404 Not Found


swoole/2.1.3
\n"; + } + } + return $back; + } +} diff --git a/core/Dispatch.php b/core/Dispatch.php new file mode 100755 index 0000000..d0d1264 --- /dev/null +++ b/core/Dispatch.php @@ -0,0 +1,114 @@ +_params = $params; + switch ($protocol) { + case GameConst::GM_PROTOCOL_WEBSOCK: + $this->webSockStrategy(); + break; + case GameConst::GM_PROTOCOL_TCP: + $this->tcpStrategy(); + break; + case GameConst::GM_PROTOCOL_HTTP: + $this->httpStrategy(); + break; + default: + Log::show('protocol is not foound', GameConst::GM_LOG_LEVEL_ERROR); + break; + } + } + + /** + * websocket逻辑处理策略路由转发 + */ + public function webSockStrategy() { + //获取路由策略 + $route = Route::$websock_map; + //获取策略类名 + $classname = isset($route[$this->_params['cmd']][$this->_params['scmd']]) ? $route[$this->_params['cmd']][$this->_params['scmd']] : ''; + //转发到对应目录处理逻辑 + $classname = 'Game\App\websock\\'.$classname; + if (class_exists($classname)) { + $this->_strategy = new $classname($this->_params); + Log::show("Class: $classname"); + } else { + Log::show("Websockt Error: class is not support,cmd is {$this->_params['cmd']},scmd is {$this->_params['scmd']}", GameConst::GM_LOG_LEVEL_ERROR); + } + } + + /** + * http逻辑处理策略路由转发 + */ + public function httpStrategy() { + //获取路由策略 + $route = Route::$http_map; + $cmd = $this->_params['cmd']; + //获取策略类名 + $classname = in_array($cmd, $route) ? $cmd : ''; + //转发到对应目录处理逻辑 + $classname = 'Game\App\http\\'.$classname; + if (class_exists($classname)) { + $this->_strategy = new $classname($this->_params); + Log::show("Class: $classname"); + } else { + Log::show("Http Error: class is not support,cmd is {$this->_params['cmd']}", GameConst::GM_LOG_LEVEL_ERROR); + } + } + + /** + * tcp逻辑处理策略路由转发 + */ + public function tcpStrategy() { + //获取路由策略 + $route = Route::$tcp_map; + //获取策略类名 + $classname = isset($route[$this->_params['cmd']][$this->_params['scmd']]) ? $route[$this->_params['cmd']][$this->_params['scmd']] : ''; + //转发到对应目录处理逻辑 + $classname = 'Game\App\tcp\\'.$classname; + if (class_exists($classname)) { + $this->_strategy = new $classname($this->_params); + Log::show("Class: $classname"); + } else { + Log::show("Tcp Error: class is not support,cmd is {$this->_params['cmd']},scmd is {$this->_params['scmd']}", GameConst::GM_LOG_LEVEL_ERROR); + } + } + + /** + * 获取策略 + */ + public function getStrategy() { + return $this->_strategy; + } + + /** + * 执行策略 + */ + public function exec() { + return $this->_strategy->exec(); + } +} \ No newline at end of file diff --git a/core/GameConst.php b/core/GameConst.php new file mode 100755 index 0000000..fa16f34 --- /dev/null +++ b/core/GameConst.php @@ -0,0 +1,25 @@ + 'INFO', + 2 => 'DEBUG', + 3=>'ERROR' + ); + + /** + * 日志等级,1表示大于等于1的等级的日志,都会显示,依次类推 + * @var int + */ + protected static $level = 1; + + /** + * 显示日志 + * @param string $centent + * @param int $level + */ + public static function show($centent = '', $level = 1) { + if($level >= self::$level) { + echo '[' . date('Y-m-d H:i:s') . '] [' . self::$level_info[$level] . '] ' . $centent . "\n"; + } + } +} + + + + diff --git a/core/MysqlPool.php b/core/MysqlPool.php new file mode 100755 index 0000000..d3e9e0f --- /dev/null +++ b/core/MysqlPool.php @@ -0,0 +1,38 @@ +pool = new \SplQueue; + $this->conf = $conf; + } + + function put($db) { + $this->pool->push($db); + } + + function get() { + //有空闲连接 + if (count($this->pool) > 0) { + return $this->pool->pop(); + } + + //无空闲连接,创建新连接 + $db = new \Swoole\Coroutine\MySQL(); + $res = $db->connect([ + 'host' => $this->conf['host'], + 'port' => $this->conf['port'], + 'user' => $this->conf['user'], + 'password' => $this->conf['password'], + 'database' => $this->conf['database'], + ]); + if ($res == false) { + return false; + } else { + return $db; + } + } +} \ No newline at end of file diff --git a/core/Packet.php b/core/Packet.php new file mode 100755 index 0000000..5266feb --- /dev/null +++ b/core/Packet.php @@ -0,0 +1,70 @@ + $code, + "msg" => $msg, + "data" => $data, + ); + return $pack; + } + + /** + * 打包数据,固定包头,4个字节为包头(里面存了包体长度),包体前2个字节为 + */ + public static function packEncode($data, $cmd = 1, $scmd = 1, $format='msgpack', $type = "tcp") { + if ($type == "tcp") { + if($format == 'msgpack') { + $sendStr = msgpack_pack($data); + } else { + $sendStr = $data; + } + $sendStr = pack('N', strlen($sendStr) + 2) . pack("C2", $cmd, $scmd). $sendStr; + return $sendStr; + } else { + return self::packFormat("packet type wrong", 100006); + } + } + + /** + * 解包数据 + */ + public static function packDecode($str, $format='msgpack') { + $header = substr($str, 0, 4); + if(strlen($header) != 4) { + return self::packFormat("packet length invalid", 100007); + } else { + $len = unpack("Nlen", $header); + $len = $len["len"]; + $cmd = unpack("Ccmd/Cscmd", substr($str, 4, 6)); + $result = substr($str, 6); + if ($len != strlen($result) + 2) { + //结果长度不对 + return self::packFormat("packet length invalid", 100007); + } + + if($format == 'msgpack') { + $result = msgpack_unpack($result); + } + + if(empty($result)) { + //结果长度不对 + return self::packFormat("packet data is empty", 100008); + } + + $result = self::packFormat("OK", 0, $result); + $result['cmd'] = $cmd['cmd']; + $result['scmd'] = $cmd['scmd']; + $result['len'] = $len + 4; + return $result; + } + } +} diff --git a/core/RedisPool.php b/core/RedisPool.php new file mode 100755 index 0000000..5fc46d4 --- /dev/null +++ b/core/RedisPool.php @@ -0,0 +1,32 @@ +pool = new SplQueue; + $this->conf = $conf; + } + + function put($redis) { + $this->pool->push($redis); + } + + function get() { + //有空闲连接 + if (count($this->pool) > 0) { + return $this->pool->pop(); + } + + //无空闲连接,创建新连接 + $redis = new \Swoole\Coroutine\Redis(); + $res = $redis->connect($this->conf['host'], $this->conf['port']); + if ($res == false) { + return false; + } else { + return $redis; + } + } +} \ No newline at end of file diff --git a/lib/JokerPoker.php b/lib/JokerPoker.php new file mode 100755 index 0000000..f39d08d --- /dev/null +++ b/lib/JokerPoker.php @@ -0,0 +1,613 @@ +'A',2=>'2',3=>'3',4=>'4',5=>'5',6=>'6',7=>'7',8=>'8',9=>'9',10=>'10',11=>'J',12=>'Q',13=>'K', + 17=>'A',18=>'2',19=>'3',20=>'4',21=>'5',22=>'6',23=>'7',24=>'8',25=>'9',26=>'10',27=>'J',28=>'Q',29=>'K', + 33=>'A',34=>'2',35=>'3',36=>'4',37=>'5',38=>'6',39=>'7',40=>'8',41=>'9',42=>'10',43=>'J',44=>'Q',45=>'K', + 49=>'A',50=>'2',51=>'3',52=>'4',53=>'5',54=>'6',55=>'7',56=>'8',57=>'9',58=>'10',59=>'J',60=>'Q',61=>'K', + 79=>'JOKER' + ); + + /** + * 赖子的key值,和牌的key值对应 + * @var int + */ + public static $laizi_value = 79; + + /** + * 花色 + */ + public static $card_color = array( + 0=>'方块', + 1=>'黑桃', + 2=>'红桃', + 3=>'梅花' + ); + + /** + * 牌型 + * @var array + */ + public static $card_type = array( + 0=>'非赢牌', + 1=>'对K或者以上', + 2=>'两对', + 3=>'三条', + 4=>'顺子', + 5=>'同花', + 6=>'葫芦', + 7=>'四条', + 8=>'同花顺', + 9=>'五条', + 10=>'带赖子皇家同花顺', + 11=>'皇家同花顺' + ); + + /** + * 牌型赔付的倍率 + * @var array + */ + public static $card_rate = array( + 0=>0, + 1=>1, + 2=>1, + 3=>2, + 4=>3, + 5=>5, + 6=>7, + 7=>17, + 8=>50, + 9=>100, + 10=>200, + 11=>250 + ); + + /** + * 是否翻倍的概率配置:1表示不翻倍回收奖励,2.表示再来一次 3,表示奖励翻倍 + */ + public static $is_double_rate = array( + 1=>5000, + 2=>1000, + 3=>4000 + ); + + /** + * 是否翻倍提示语 + */ + public static $is_double_msg = array( + 1=>'不翻倍回收奖励', + 2=>'再来一次,不回收奖励', + 3=>'奖励翻倍' + ); + + /** + * 是否有赖子牌, 如果有赖子牌,这个值就是true, 默认false + */ + public static $is_laizi = false; + + /** + * 是否为顺子,是true,否false + */ + public static $is_shunzi = false; + + /** + * 是否为最大顺子,是true,否false + */ + public static $is_big_shunzi = false; + + /** + * 是否为同花,是true,否false + */ + public static $is_tonghua = false; + + /** + * 随机获取5张牌,如果参数指定n张牌, 就补齐5-n张牌 + */ + public static function getFiveCard($arr = array()) { + $card = self::$card_value_list; + $num = 5 - count($arr); + if($num == 0) { + $card_key = $arr; + } else { + //去除上面的牌, 防止重复出现 + foreach($arr as $v) { + unset($card[$v]); + } + $card_key = array_rand($card, $num); + if(!is_array($card_key)) { + $card_key = array($card_key); + } + $card_key = array_merge($card_key,$arr); + } + return $card_key; + } + /** + * 随机获取1张牌,不包括王 + */ + public static function getOneCard() { + $card = self::$card_value_list; + unset($card[79]); + $card_key = array_rand($card, 1); + if(!is_array($card_key)) { + $card_key = array($card_key); + } + return $card_key; + } + + /** + * 去除赖子,并且排序 + */ + private static function exceptLaizi($arr) { + $key = array_search(self::$laizi_value, $arr); //键值有可能0 + if($key !== false) { + unset($arr[$key]); + self::$is_laizi = true; + } else { + self::$is_laizi = false; + } + sort($arr); + return $arr; + } + + /** + * 获取牌内容,根据牌的key,获取牌的内容 + */ + private static function getCard($arr) { + $card = array(); + foreach($arr as $v) { + $card[$v]= self::$card_value_list[$v]; + } + return $card; + } + + /** + * 获取牌内容,并显示花色, 方便直观查看 + */ + public static function showCard($arr) { + $show = array(); + $card = self::getCard($arr); + foreach($card as $k=>$v) { + if($k != self::$laizi_value) { + $key = floor($k / 16); + $show[] = self::$card_color[$key].'_'.$v; + } else { + $show[] = $v; + } + + } + return implode(',', $show); + } + + /** + * 不带赖子皇家同花顺 + */ + public static function isBigTongHuaShun() { + return (self::$is_tonghua && self::$is_shunzi && self::$is_big_shunzi && !self::$is_laizi) ? true : false; + } + + /** + * 带来赖子皇家同花顺 + */ + public static function isBigTongHuaShunByLaizi() { + return (self::$is_tonghua && self::$is_shunzi && self::$is_big_shunzi && self::$is_laizi) ? true : false; + } + + /** + * 是否为同花顺 + */ + public static function isTongHuaShun() { + return (self::$is_tonghua && self::$is_shunzi) ? true : false; + } + + /** + * 是否为同花牌,判断同花的算法 + */ + public static function isTongHua($arr) { + $sub = array(); + foreach($arr as $v) { + $sub[] = floor($v / 16); + } + $u = array_unique($sub); + if(count($u) == 1) { + self::$is_tonghua = true; + } else { + self::$is_tonghua = false; + } + return self::$is_tonghua; + } + + /** + * 是否为顺子牌,判断顺子的算法 + */ + public static function isShunZi($arr) { + $flag = 0; + $card = self::getCard($arr); + asort($card); + $min = key($card) % 16; + if($min >= 2 && $min <= 10) { + //最小或者最大顺子,需要特殊处理 + /* if(($min == 2 || $min == 10) && array_search('A', $card) !== false) { + $flag++; + } */ + if( array_search('A', $card) !== false) { + if($min == 2 ){ + $min = 1; + }elseif ( $min == 10){ + $flag++; + } + } + $cnt = count($arr); + for($i = 1; $i < 5; $i++) { + $next = $min + $i; + if(in_array($next, $arr) || in_array(($next + 16), $arr) || in_array(($next + 32), $arr) || in_array(($next + 48), $arr)) { + $flag++; + } + } + } + if($flag == $cnt - 1) { + self::$is_shunzi = true; + } else { + self::$is_shunzi = false; + } + //是否为最大顺子,是true,否false + if($min == 10) { + self::$is_big_shunzi = true; + } else { + self::$is_big_shunzi = false; + } + return self::$is_shunzi; + } + + /** + * 取模值,算对子,两对,三张,四条,5条的算法 + */ + public static function getModValue($arr) { + $flag = $type = 0; + $mod = array(); + foreach($arr as $k=>$v) { + $mod[] = $v % 16; + } + $v = array_count_values($mod); + $cnt = count($v); + if(self::$is_laizi) { + if(in_array(1, $v) && $cnt == 4) { + //对子 + $card = self::getCard($arr); + if(array_search('A', $card) !== false || array_search('K', $card) !== false){ + $type = 1; //对K或更大 + } + } elseif(in_array(2, $v) && $cnt == 3) { + $type = 3; //三张 + } elseif(in_array(2, $v) && $cnt == 2) { + $type = 4; //葫芦 + } elseif(in_array(3, $v)) { + $type = 5; //四条 + } elseif(in_array(4, $v)) { + $type = 6; //五条 + } + } else { + if(in_array(2, $v) && $cnt == 4) { + //对子 + $card = self::getCard($arr); + $card_key = array_count_values($card); + arsort($card_key); + $kw = key($card_key); + if($kw == 'A' || $kw == 'K'){ + $type = 1; //对K或更大 + } + } elseif(in_array(2, $v) && $cnt == 3) { + $type = 2; //两对 + } elseif(in_array(3, $v) && $cnt == 3) { + $type = 3; //三张 + } elseif(in_array(3, $v) && $cnt == 2) { + $type = 4; //葫芦 + } elseif(in_array(4, $v)) { + $type = 5; //四条 + } + } + return $type; + } + + /** + * 五张 + */ + public static function isWuZhang($type) { + return $type == 6 ? true : false; + } + + /** + * 四张 + */ + public static function isSiZhang($type) { + return $type == 5 ? true : false; + } + + /** + * 葫芦 + */ + public static function isHulu($type) { + return $type == 4 ? true : false; + } + + /** + * 三张 + */ + public static function isSanZhang($type) { + return $type == 3 ? true : false; + } + + /** + * 两对 + */ + public static function isLiangDui($type) { + return $type == 2 ? true : false; + } + + /** + * 大于对K或更大 + */ + public static function isDaYuQDui($type) { + return $type == 1 ? true : false; + } + + /** + * 检查牌型,判断用户所翻的牌为那种牌型 + */ + public static function checkCardType($arr) { + //去除赖子牌 + $arr_card = self::exceptLaizi($arr); + $type = self::getModValue($arr_card); + if(self::isWuZhang($type)) { + return 9; //五条 + } elseif(self::isSiZhang($type)) { + return 7; //四条 + } elseif(self::isHulu($type)) { + return 6; //葫芦,三张两对 + } elseif(self::isSanZhang($type)) { + return 3; //三张 + } elseif(self::isLiangDui($type)) { + return 2; //两对 + } else { + $back = 0; + if(self::isDaYuQDui($type)) { + $back = 1; //对K或者大于 + } + if(self::isShunZi($arr_card)) { + $back = 4; //是否为顺子 + } + if(self::isTongHua($arr_card)) { + $back = 5; //是否为同花 + } + if(self::isTongHuaShun()) { + $back = 8; //是否为同花顺 + } + if(self::isBigTongHuaShunByLaizi()) { + $back = 10; //带赖子皇家同花顺 + } + if(self::isBigTongHuaShun()) { + $back = 11; //皇家同花顺 + } + return $back; + } + } + + /** + * 找出牌型里那些牌需要高亮显示 + */ + public static function highLight($arr, $type) { + $card_key = array(); + $card = self::getCard($arr); + $val = array_count_values($card); + if($type > 3) { + $card_key = $arr; + } elseif($type == 3) { + //三条 + arsort($val); + $kw = key($val); + $card_key = array(); + foreach($card as $k=>$v) { + if($v == $kw || $k == self::$laizi_value) { + $card_key[] = $k; + } + } + } elseif($type == 2) { + //两对 + $kw = $card_key = array(); + foreach($val as $k=>$v) { + if($v == 2) { + $kw[] = $k; + } + } + foreach($card as $k=>$v) { + if(in_array($v, $kw)) { + $card_key[] = $k; + } + } + } elseif($type == 1) { + //对A后者对K + foreach($card as $k=>$v) { + if(in_array($v, array('A','K')) || $k == self::$laizi_value) { + $card_val[$k] = $v; + } + } + $t_val = array_count_values($card_val); + arsort($t_val); + $kw = key($t_val); + if(!self::$is_laizi) { + if(count($t_val) > 1) { + foreach($card_val as $k=>$v) { + if($kw != $v) { + unset($card_val[$k]); + } + } + } + } else { + //去除k + if(count($t_val) > 2) { + foreach($card_val as $k=>$v) { + if($v == 'K') { + unset($card_val[$k]); + } + } + } + } + $card_key = array_keys($card_val); + } + return $card_key; + } + + /** + * 是否翻倍, 玩家翻倍处理 + */ + public static function getIsDoubleCard($m_card = 2, $pos = 2, $arr = array()) { + $list = self::$card_value_list; + unset($list[self::$laizi_value]); //去除赖子大王 + $card_list = array_rand($list, 4); + //概率运算 + if(!empty($arr)) { + $rate = self::_getRate($arr); + }else{ + $rate = self::_getRate(self::$is_double_rate); + } + + $min = $m_card % 16; + //拿到最大牌A和最小牌2的概率需要特殊处理一下 + if($min == 1 && $rate == 3) { + //最大牌A出现, 对方肯定是平手或者输 + $rate = rand(1, 2); + } elseif($min == 2 && $rate == 1) { + //最小牌2,出现对方肯定是平手或者赢 // $rate = rand(2,3); + $rate = rand(2,3); + } + //最小牌 + if($rate == 2) { + //不翻倍,奖励不扣除 + $key = $min; + } elseif($rate == 3) { + //翻倍,奖励累加, 系统数, 发大牌 + if($min == 13) { + $key = 1; + } else { + $key = rand($min+1, 13); + } + } else { + //不翻倍,丢失全部奖励,系统赢发小牌 + if($min == 1) { + $key = rand(2, 13); + } else { + $key = rand(2, $min-1); + } + } + //根据key组牌 + $card_val = array($key, $key+16, $key+32, $key+48); + //去除相同的值 + $card_val = array_diff($card_val, $card_list); + $card_key = array_rand($card_val, 1); + $card_list[$pos] = $card_val[$card_key]; + return array('result'=>$rate, 'msg'=>self::$is_double_msg[$rate], 'm_card'=>self::$card_value_list[$m_card],'pos_card'=>self::$card_value_list[$card_list[$pos]], 'pos'=>$pos, 'card'=>$card_list, 'show'=>self::showCard($card_list)); + } + + /** + * 计算概率算法 + * @param array $prizes 奖品概率数组 + * 格式:array(奖品id => array( 'rate'=>概率),奖品id => array('rate'=>概率)) + * @return int + */ + private static function _getRate($arr = array()) { + $key = 0; + //首先生成一个1W内的数 + $rid = rand(1, 10000); + //概率值(按设置累加) + $rate = 0; + foreach ($arr as $k => $v) { + //根据设置的概率向上累加 + $rate += $v; + //如果生成的概率数小于或等于此数据,表示当前道具ID即是,退出查找 + if($rid <= $rate) { + $key = $k; + break; + } + } + return $key; + } + + /** + * 获取牌型结果 + */ + public static function getCardType($arr) { + $type = self::checkCardType($arr); + $highlight = self::highLight($arr, $type); + return array('card'=>$arr, 'type'=>$type, 'typenote'=>self::$card_type[$type], 'rate'=>self::$card_rate[$type], 'highlight'=>$highlight); + } + + /** + * 设置翻倍的概率 + */ + public static function setRate($rate = array()) { + if(empty($rate)) { + self::$is_double_rate = $rate; + } + } +} + +/* + +header("Content-type: text/html; charset=utf-8"); + +$act = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : ''; +//类调用 +$obj = new JokerPoker(); + +if($act == 'getcard') { + //获取5张牌 + $key = $obj->getFiveCard(); + //$key = array(17,37,39,40,42); + exit(json_encode($key)); +} elseif($act == 'turncard') { + //翻牌 + $tmp = isset($_REQUEST['card']) ? trim($_REQUEST['card']) : ''; + if(!empty($tmp)) { + $key = explode('|',$tmp); + } else { + $key = array(); + } + $key = array_map('intval', $key); + $card = $obj->getFiveCard($key); + $res = $obj->getCardType($card); + exit(json_encode($res)); +} elseif($act == 'isdouble') { + //翻倍处理 + $card = isset($_REQUEST['card']) && !empty($_REQUEST['card']) ? intval($_REQUEST['card']) : 2; + $pos = (isset($_REQUEST['pos']) && $_REQUEST['pos'] < 4) ? intval($_REQUEST['pos']) : 2; + $res = $obj->getIsDoubleCard($card, $pos); + exit(json_encode($res)); +} + +//测试牌型结果 +$tmp = isset($_REQUEST['test']) ? trim($_REQUEST['test']) : ''; +if(!empty($tmp)) { + $key = explode('|',$tmp); +} else { + $key = array(); +} + +//类调用 +$obj = new JokerPoker(); +$key = $obj->getFiveCard(); +$key = array(13,18,24,27,43); +$card = $obj->showCard($key); + +var_dump($key, $card, $obj->getCardType($key),$obj->getIsDoubleCard()); + +*/ diff --git a/lib/protobuf/Person.php b/lib/protobuf/Person.php new file mode 100755 index 0000000..aeae088 --- /dev/null +++ b/lib/protobuf/Person.php @@ -0,0 +1,164 @@ + array( + 'name' => 'name', + 'required' => true, + 'type' => \ProtobufMessage::PB_TYPE_STRING, + ), + self::ID => array( + 'name' => 'id', + 'required' => true, + 'type' => \ProtobufMessage::PB_TYPE_INT, + ), + self::EMAIL => array( + 'name' => 'email', + 'required' => false, + 'type' => \ProtobufMessage::PB_TYPE_STRING, + ), + self::MONEY => array( + 'name' => 'money', + 'required' => false, + 'type' => \ProtobufMessage::PB_TYPE_DOUBLE, + ), + ); + + /** + * Constructs new message container and clears its internal state + */ + public function __construct() + { + $this->reset(); + } + + /** + * Clears message values and sets default ones + * + * @return null + */ + public function reset() + { + $this->values[self::NAME] = null; + $this->values[self::ID] = null; + $this->values[self::EMAIL] = null; + $this->values[self::MONEY] = null; + } + + /** + * Returns field descriptors + * + * @return array + */ + public function fields() + { + return self::$fields; + } + + /** + * Sets value of 'name' property + * + * @param string $value Property value + * + * @return null + */ + public function setName($value) + { + return $this->set(self::NAME, $value); + } + + /** + * Returns value of 'name' property + * + * @return string + */ + public function getName() + { + $value = $this->get(self::NAME); + return $value === null ? (string)$value : $value; + } + + /** + * Sets value of 'id' property + * + * @param integer $value Property value + * + * @return null + */ + public function setId($value) + { + return $this->set(self::ID, $value); + } + + /** + * Returns value of 'id' property + * + * @return integer + */ + public function getId() + { + $value = $this->get(self::ID); + return $value === null ? (integer)$value : $value; + } + + /** + * Sets value of 'email' property + * + * @param string $value Property value + * + * @return null + */ + public function setEmail($value) + { + return $this->set(self::EMAIL, $value); + } + + /** + * Returns value of 'email' property + * + * @return string + */ + public function getEmail() + { + $value = $this->get(self::EMAIL); + return $value === null ? (string)$value : $value; + } + + /** + * Sets value of 'money' property + * + * @param double $value Property value + * + * @return null + */ + public function setMoney($value) + { + return $this->set(self::MONEY, $value); + } + + /** + * Returns value of 'money' property + * + * @return double + */ + public function getMoney() + { + $value = $this->get(self::MONEY); + return $value === null ? (double)$value : $value; + } +} diff --git a/log/server.log b/log/server.log new file mode 100755 index 0000000..8b13789 --- /dev/null +++ b/log/server.log @@ -0,0 +1 @@ + diff --git a/log/sw_server.log b/log/sw_server.log new file mode 100755 index 0000000..82493a9 --- /dev/null +++ b/log/sw_server.log @@ -0,0 +1,355034 @@ +[2018-06-06 10:46:49 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:46:49 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:46:49 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:46:49 *2688.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf ep-alive +Date: Wed, 06 Jun 2018 02:06:25 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 10:46:50 #2679.1] TRACE check fd=7 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=8 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=9 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=10 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=11 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=12 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=13 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=14 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=15 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=16 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=17 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=18 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=19 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=20 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=21 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=22 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=23 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=24 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=25 +[2018-06-06 10:46:50 #2679.1] TRACE check fd=26 +[2018-06-06 10:46:51 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:46:51 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:46:51 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:46:51 *2687.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf cket-Accept: Wyu1tsDgwCS5co9YeC3yiYVNM6c= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 10:47:19 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:47:19 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:47:19 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:47:19 *2688.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf ep-alive +Date: Wed, 06 Jun 2018 02:06:25 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 10:47:20 #2679.1] TRACE check fd=7 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=8 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=9 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=10 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=11 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=12 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=13 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=14 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=15 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=16 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=17 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=18 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=19 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=20 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=21 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=22 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=23 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=24 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=25 +[2018-06-06 10:47:20 #2679.1] TRACE check fd=26 +[2018-06-06 10:47:21 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:47:21 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:47:21 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:47:21 *2687.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf cket-Accept: Wyu1tsDgwCS5co9YeC3yiYVNM6c= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 10:47:49 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:47:49 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:47:49 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:47:49 *2688.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf ep-alive +Date: Wed, 06 Jun 2018 02:06:25 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 10:47:50 #2679.1] TRACE check fd=7 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=8 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=9 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=10 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=11 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=12 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=13 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=14 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=15 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=16 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=17 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=18 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=19 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=20 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=21 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=22 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=23 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=24 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=25 +[2018-06-06 10:47:50 #2679.1] TRACE check fd=26 +[2018-06-06 10:47:51 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:47:51 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:47:51 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:47:51 *2687.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf cket-Accept: Wyu1tsDgwCS5co9YeC3yiYVNM6c= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 10:48:19 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:48:19 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:48:19 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:48:19 *2688.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf ep-alive +Date: Wed, 06 Jun 2018 02:06:25 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 10:48:20 #2679.1] TRACE check fd=7 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=8 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=9 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=10 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=11 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=12 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=13 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=14 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=15 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=16 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=17 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=18 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=19 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=20 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=21 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=22 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=23 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=24 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=25 +[2018-06-06 10:48:20 #2679.1] TRACE check fd=26 +[2018-06-06 10:48:21 #2679.0] TRACE header_length=6, payload_length=21 +[2018-06-06 10:48:21 #2679.0] TRACE send string package, size=23 bytes. +[2018-06-06 10:48:21 #2679.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 10:48:21 *2687.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+fdsfdsf cket-Accept: Wyu1tsDgwCS5co9YeC3yiYVNM6c= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:08:55 @2733.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-06 12:08:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:09:00 #2733.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-06 12:09:00 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 12:09:00 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:09:00 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:09:00 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:09:00 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:09:00 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:09:00 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:09:00 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:09:00 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:09:00 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:09:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:09:03 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 12:09:03 #2733.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-06 12:09:03 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-06 12:09:03 #2733.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-06 12:09:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:09:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:10:01 #2733.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-06 12:10:01 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 12:10:01 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:10:01 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:10:01 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:10:01 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:01 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:10:01 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:10:01 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:10:01 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:10:01 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:01 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:03 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 12:10:03 #2733.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-06 12:10:03 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-06 12:10:03 #2733.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-06 12:10:06 #2733.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-06 12:10:06 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 12:10:06 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:10:06 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:10:06 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:10:06 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:10:06 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:10:06 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:10:06 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:10:06 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:07 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:10:07 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:10:07 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:10:07 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:10:07 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:10:07 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:10:07 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:10:07 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:07 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:10:07 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:10:07 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:10:07 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:10:07 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:10:07 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:10:07 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:10:07 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:06 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:09 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:10:09 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:10:09 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:10:09 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 16 + +http test is ok! +[2018-06-06 12:10:09 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:10:09 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:10:09 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:10:09 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:13 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 12:10:13 #2733.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-06 12:10:13 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-06 12:10:13 #2733.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-06 12:10:19 #2733.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-06 12:10:19 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-06 12:10:19 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-06 12:10:19 *2741.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: A0KjKdcOtdBRIAs+caMOJg== +Sec-We +[2018-06-06 12:10:19 *2741.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-06 12:10:19 *2741.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:10:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:10:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:10:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:10:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:22 #2733.0] TRACE header_length=6, payload_length=30 +[2018-06-06 12:10:22 #2733.0] TRACE send string package, size=32 bytes. +[2018-06-06 12:10:22 #2733.0] TRACE dispatch, type=10|len=32 + +[2018-06-06 12:10:22 *2741.0] TRACE [Worker] send: sendn=63|type=0|content=1 +[2018-06-06 12:10:23 #2733.0] TRACE header_length=6, payload_length=30 +[2018-06-06 12:10:23 #2733.0] TRACE send string package, size=32 bytes. +[2018-06-06 12:10:23 #2733.0] TRACE dispatch, type=10|len=32 + +[2018-06-06 12:10:23 *2742.1] TRACE [Worker] send: sendn=63|type=0|content=1 +[2018-06-06 12:10:24 #2733.0] TRACE header_length=6, payload_length=30 +[2018-06-06 12:10:24 #2733.0] TRACE send string package, size=32 bytes. +[2018-06-06 12:10:24 #2733.0] TRACE dispatch, type=10|len=32 + +[2018-06-06 12:10:24 *2741.0] TRACE [Worker] send: sendn=63|type=0|content=1 +[2018-06-06 12:10:24 #2733.0] TRACE header_length=6, payload_length=30 +[2018-06-06 12:10:24 #2733.0] TRACE send string package, size=32 bytes. +[2018-06-06 12:10:24 #2733.0] TRACE dispatch, type=10|len=32 + +[2018-06-06 12:10:24 *2742.1] TRACE [Worker] send: sendn=63|type=0|content=1 +[2018-06-06 12:10:24 #2733.0] TRACE header_length=6, payload_length=30 +[2018-06-06 12:10:24 #2733.0] TRACE send string package, size=32 bytes. +[2018-06-06 12:10:24 #2733.0] TRACE dispatch, type=10|len=32 + +[2018-06-06 12:10:24 *2741.0] TRACE [Worker] send: sendn=63|type=0|content=1 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:10:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:10:27 #2733.0] TRACE header_length=6, payload_length=38 +[2018-06-06 12:10:27 #2733.0] TRACE send string package, size=40 bytes. +[2018-06-06 12:10:27 #2733.0] TRACE dispatch, type=10|len=40 + +[2018-06-06 12:10:27 *2742.1] TRACE [Worker] send: sendn=71|type=0|content=9 +[2018-06-06 12:10:27 #2733.0] TRACE header_length=6, payload_length=38 +[2018-06-06 12:10:27 #2733.0] TRACE send string package, size=40 bytes. +[2018-06-06 12:10:27 #2733.0] TRACE dispatch, type=10|len=40 + +[2018-06-06 12:10:27 *2741.0] TRACE [Worker] send: sendn=71|type=0|content=9 +[2018-06-06 12:10:28 #2733.0] TRACE header_length=6, payload_length=38 +[2018-06-06 12:10:28 #2733.0] TRACE send string package, size=40 bytes. +[2018-06-06 12:10:28 #2733.0] TRACE dispatch, type=10|len=40 + +[2018-06-06 12:10:28 *2742.1] TRACE [Worker] send: sendn=71|type=0|content=9 +[2018-06-06 12:10:28 #2733.0] TRACE header_length=6, payload_length=38 +[2018-06-06 12:10:28 #2733.0] TRACE send string package, size=40 bytes. +[2018-06-06 12:10:28 #2733.0] TRACE dispatch, type=10|len=40 + +[2018-06-06 12:10:28 *2741.0] TRACE [Worker] send: sendn=71|type=0|content=9 +[2018-06-06 12:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:10:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:10:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:10:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:10:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:11:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:11:21 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:11:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:11:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:11:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:11:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:11:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:11:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:12:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:12:21 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:12:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:12:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:12:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:12:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:12:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:12:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:13:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:10:09 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:13:21 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ec-WebSocket-Accept: lk2V/vEjAKP8wO1h/0r9MF+f+vs= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-06 12:13:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:13:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:13:35 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 12:13:35 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=28 +[2018-06-06 12:13:35 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:13:35 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:13:35 *2742.1] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:13:35 *2742.1] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:13:35 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:13:35 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:13:35 *2741.0] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:13:35 *2741.0] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:13:36 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 12:13:36 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 12:13:36 *2742.1] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 12:13:36 *2742.1] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:13:36 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 12:13:36 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 12:13:36 *2741.0] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 12:13:36 *2741.0] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:13:41 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-06 12:13:41 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-06 12:13:41 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-06 12:13:41 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-06 12:13:43 #2733.0] TRACE Close Event.fd=28|from=0 +[2018-06-06 12:13:43 #2733.0] TRACE set_maxfd=27|close_fd=28 + +[2018-06-06 12:13:43 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 12:13:43 #2733.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-06 12:13:43 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-06 12:13:43 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-06 12:13:43 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-06 12:13:43 *2741.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-06 12:13:46 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-06 12:13:46 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-06 12:13:46 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-06 12:13:46 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-06 12:13:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:13:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:13:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:13:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:13:48 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-06 12:13:48 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-06 12:13:48 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-06 12:13:48 *2742.1] TRACE [Worker] send: sendn=47|type=0|content=! +[2018-06-06 12:13:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:13:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:13:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:13:50 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 12:13:52 #2733.0] TRACE header_length=6, payload_length=18 +[2018-06-06 12:13:52 #2733.0] TRACE send string package, size=20 bytes. +[2018-06-06 12:13:52 #2733.0] TRACE dispatch, type=10|len=20 + +[2018-06-06 12:13:52 *2742.1] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-06 12:13:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:13:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:13:55 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-06 12:13:55 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-06 12:13:55 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-06 12:13:55 *2741.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-06 12:13:59 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-06 12:13:59 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-06 12:13:59 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-06 12:13:59 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-06 12:14:02 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-06 12:14:02 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-06 12:14:02 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-06 12:14:02 *2741.0] TRACE [Worker] send: sendn=155|type=0|content=~ +[2018-06-06 12:14:11 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 12:14:11 #2733.0] TRACE send string package, size=17 bytes. +[2018-06-06 12:14:11 #2733.0] TRACE dispatch, type=10|len=17 + +[2018-06-06 12:14:11 *2742.1] TRACE [Worker] send: sendn=48|type=0|content= +[2018-06-06 12:14:11 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 12:14:11 #2733.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-06 12:14:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:14:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:14:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:14:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:14:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:14:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:14:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:14:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:14:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:14:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:14:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:14:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:14:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:14:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:14:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:14:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:14:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:14:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:14:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:14:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:15:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:15:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:15:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:15:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:15:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:15:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:15:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:15:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:15:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:15:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:15:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:15:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:15:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:15:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:15:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:15:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:15:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:15:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:15:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:15:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:16:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:16:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:16:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:16:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:16:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:16:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:16:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:16:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:16:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:16:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:16:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:16:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:16:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:16:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:16:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:16:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:16:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:16:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:16:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:16:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:17:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:17:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:17:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:17:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:17:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:17:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:17:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:17:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:17:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:17:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:17:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:17:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:17:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:17:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:17:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:17:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:17:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:17:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:17:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:17:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:18:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:18:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:18:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:18:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:18:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:18:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:18:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:18:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:18:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:18:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:18:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:18:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:18:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:18:48 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:18:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:18:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:18:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:18:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:18:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:18:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:19:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:19:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:19:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:19:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:20:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:20:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:20:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:20:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:21:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:21:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:21:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:21:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:22:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:22:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:22:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:22:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:23:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:23:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:23:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:23:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:24:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:24:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:24:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:24:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:25:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:25:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:25:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:25:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:26:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:26:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:26:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:26:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:27:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:27:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:27:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:27:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:28:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:28:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:28:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:28:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:29:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:29:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:29:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:29:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:30:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:30:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:30:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:30:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:31:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:31:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:31:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:31:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:32:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:32:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:32:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:32:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:33:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:33:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:33:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:33:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:34:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:34:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:34:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:34:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:35:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:35:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:35:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:35:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:36:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:36:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:36:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:36:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:37:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:37:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:37:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:37:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:38:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:38:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:38:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:38:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:39:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:39:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:39:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:39:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:40:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:40:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:40:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:40:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:41:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:41:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:41:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:41:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:42:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:42:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:42:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:42:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:43:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:43:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:43:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:43:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:44:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:44:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:44:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:44:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:45:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:45:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:45:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:45:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:46:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:46:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:46:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:46:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:47:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:47:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:47:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:47:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:48:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:48:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:48:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:48:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:49:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:49:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:49:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:49:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:50:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:50:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:50:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:50:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:51:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:51:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:51:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:51:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:52:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:52:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:52:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:52:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:53:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:53:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:53:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:53:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:54:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:54:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:54:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:54:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:55:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:55:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:55:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:55:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:56:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:56:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:56:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:56:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:57:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:57:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:57:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:57:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:58:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:58:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:58:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:58:55 #2733.1] TRACE check fd=26 +[2018-06-06 12:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:59:25 #2733.1] TRACE check fd=7 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=8 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=9 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=10 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=11 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=12 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=13 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=14 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=15 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=16 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=17 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=18 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=19 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=20 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=21 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=22 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=23 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=24 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=25 +[2018-06-06 12:59:25 #2733.1] TRACE check fd=26 +[2018-06-06 12:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 12:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 12:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 12:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 12:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 12:59:55 #2733.1] TRACE check fd=7 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=8 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=9 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=10 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=11 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=12 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=13 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=14 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=15 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=16 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=17 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=18 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=19 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=20 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=21 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=22 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=23 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=24 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=25 +[2018-06-06 12:59:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:00:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:00:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:00:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:00:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:01:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:01:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:01:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:01:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:02:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:02:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:02:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:02:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:03:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:03:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:03:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:03:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:04:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:04:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:04:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:04:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:05:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:05:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:05:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:05:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:06:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:06:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:06:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:06:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:07:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:07:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:07:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:07:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:08:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:08:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:08:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:08:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+poscard)8show#方块_2,方块_8,红桃_9,梅花_8bean +[2018-06-06 13:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ight keep-alive +Date: Wed, 06 Jun 2018 04:13:35 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:09:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:09:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:09:34 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-06 13:09:34 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=28 +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 13:09:34 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 13:09:34 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 13:09:34 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 13:09:34 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 13:09:34 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 13:09:34 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 13:09:34 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 13:09:34 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-06 13:09:34 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-06 13:09:34 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:09:34 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-06 13:09:34 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-06 13:09:34 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-06 13:09:34 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:09:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=27 +[2018-06-06 13:09:55 #2733.1] TRACE check fd=28 +[2018-06-06 13:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:10:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=27 +[2018-06-06 13:10:25 #2733.1] TRACE check fd=28 +[2018-06-06 13:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:10:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=27 +[2018-06-06 13:10:55 #2733.1] TRACE check fd=28 +[2018-06-06 13:10:55 #2733.0] TRACE Close Event.fd=27|from=0 +[2018-06-06 13:10:55 #2733.0] TRACE Close Event.fd=28|from=0 +[2018-06-06 13:10:55 #2733.0] TRACE set_maxfd=27|close_fd=28 + +[2018-06-06 13:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:11:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:11:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:11:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:11:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:12:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:12:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:12:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:12:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:13:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:13:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:13:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:13:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:14:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:14:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:14:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:14:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:15:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:15:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:15:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:15:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:16:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:16:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:16:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:16:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:17:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:17:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:17:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:17:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:18:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:18:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:18:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:18:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:19:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:19:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:19:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:19:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:20:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:20:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:20:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:20:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:21:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:21:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:21:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:21:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:22:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:22:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:22:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:22:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:23:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:23:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:23:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:23:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:24:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:24:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:24:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:24:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:25:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:25:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:25:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:25:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:26:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:26:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:26:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:26:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:27:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:27:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:27:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:27:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:28:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:28:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:28:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:28:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:29:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:29:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:29:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:29:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:30:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:30:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:30:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:30:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:31:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:31:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:31:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:31:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:32:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:32:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:32:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:32:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:33:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:33:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:33:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:33:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:34:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:34:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:34:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:34:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:35:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:35:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:35:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:35:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:36:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:36:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:36:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:36:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:37:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:37:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:37:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:37:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:38:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:38:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:38:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:38:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:39:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:39:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:39:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:39:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:40:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:40:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:40:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:40:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:41:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:41:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:41:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:41:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:42:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:42:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:42:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:42:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:43:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:43:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:43:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:43:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:44:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:44:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:44:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:44:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:45:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:45:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:45:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:45:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:46:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:46:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:46:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:46:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:47:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:47:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:47:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:47:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:48:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:48:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:48:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:48:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:49:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:49:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:49:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:49:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:50:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:50:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:50:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:50:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:51:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:51:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:51:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:51:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:52:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:52:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:52:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:52:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:53:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:53:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:53:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:53:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:54:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:54:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:54:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:54:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:55:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:55:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:55:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:55:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:56:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:56:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:56:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:56:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:57:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:57:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:57:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:57:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:58:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:58:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:58:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:58:55 #2733.1] TRACE check fd=26 +[2018-06-06 13:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:59:25 #2733.1] TRACE check fd=7 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=8 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=9 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=10 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=11 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=12 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=13 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=14 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=15 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=16 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=17 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=18 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=19 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=20 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=21 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=22 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=23 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=24 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=25 +[2018-06-06 13:59:25 #2733.1] TRACE check fd=26 +[2018-06-06 13:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 13:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 13:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 13:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 13:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 13:59:55 #2733.1] TRACE check fd=7 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=8 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=9 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=10 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=11 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=12 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=13 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=14 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=15 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=16 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=17 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=18 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=19 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=20 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=21 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=22 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=23 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=24 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=25 +[2018-06-06 13:59:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:00:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:00:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:00:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:00:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:01:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:01:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:01:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:01:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:02:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:02:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:02:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:02:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:03:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:03:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:03:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:03:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:04:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:04:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:04:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:04:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:05:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:05:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:05:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:05:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:06:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:06:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:06:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:06:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:07:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:07:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:07:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:07:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:08:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:08:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:08:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:08:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:09:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:09:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:09:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:09:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:10:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:10:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:10:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:10:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:11:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:11:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:11:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:11:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:12:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:12:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:12:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:12:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:13:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:13:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:13:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:13:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:14:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:14:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:14:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:14:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:15:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:15:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:15:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:15:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:16:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:16:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:16:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:16:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:17:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:17:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:17:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:17:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:18:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:18:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:18:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:18:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:19:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:19:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:19:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:19:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:20:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:20:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:20:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:20:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:21:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:21:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:21:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:21:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:22:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:22:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:22:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:22:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:23:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:23:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:23:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:23:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:24:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:24:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:24:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:24:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:25:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:25:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:25:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:25:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:26:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:26:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:26:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:26:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:27:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:27:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:27:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:27:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:28:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:28:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:28:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:28:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:29:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:29:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:29:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:29:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:30:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:30:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:30:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:30:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:31:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:31:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:31:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:31:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:32:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:32:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:32:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:32:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:33:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:33:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:33:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:33:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:34:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:34:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:34:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:34:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:35:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:35:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:35:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:35:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:36:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:36:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:36:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:36:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:37:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:37:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:37:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:37:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:38:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:38:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:38:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:38:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:39:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:39:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:39:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:39:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:40:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:40:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:40:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:40:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:41:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:41:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:41:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:41:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:42:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:42:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:42:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:42:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:43:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:43:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:43:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:43:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:44:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:44:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:44:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:44:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:45:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:45:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:45:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:45:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:46:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:46:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:46:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:46:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:47:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:47:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:47:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:47:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:48:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:48:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:48:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:48:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:49:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:49:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:49:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:49:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:50:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:50:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:50:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:50:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:51:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:51:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:51:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:51:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:52:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:52:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:52:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:52:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:53:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:53:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:53:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:53:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:54:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:54:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:54:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:54:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:55:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:55:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:55:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:55:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:56:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:56:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:56:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:56:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:57:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:57:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:57:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:57:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:58:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:58:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:58:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:58:55 #2733.1] TRACE check fd=26 +[2018-06-06 14:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:59:25 #2733.1] TRACE check fd=7 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=8 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=9 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=10 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=11 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=12 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=13 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=14 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=15 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=16 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=17 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=18 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=19 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=20 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=21 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=22 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=23 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=24 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=25 +[2018-06-06 14:59:25 #2733.1] TRACE check fd=26 +[2018-06-06 14:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 14:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 14:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 14:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 14:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 14:59:55 #2733.1] TRACE check fd=7 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=8 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=9 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=10 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=11 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=12 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=13 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=14 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=15 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=16 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=17 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=18 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=19 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=20 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=21 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=22 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=23 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=24 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=25 +[2018-06-06 14:59:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:00:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:00:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:00:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:00:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:01:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:01:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:01:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:01:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:02:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:02:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:02:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:02:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:03:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:03:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:03:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:03:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:04:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:04:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:04:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:04:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:05:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:05:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:05:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:05:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:06:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:06:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:06:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:06:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:07:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:07:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:07:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:07:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:08:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:08:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:08:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:08:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:09:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:09:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:09:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:09:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:10:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:10:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:10:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:10:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:11:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:11:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:11:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:11:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:12:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:12:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:12:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:12:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:13:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:13:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:13:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:13:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:14:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:14:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:14:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:14:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:15:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:15:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:15:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:15:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:16:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:16:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:16:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:16:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:17:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:17:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:17:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:17:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:18:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:18:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:18:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:18:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:19:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:19:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:19:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:19:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:20:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:20:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:20:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:20:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:21:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:21:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:21:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:21:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:22:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:22:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:22:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:22:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:23:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:23:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:23:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:23:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:24:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:24:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:24:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:24:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:25:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:25:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:25:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:25:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:26:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:26:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:26:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:26:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:27:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:27:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:27:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:27:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:28:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:28:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:28:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:28:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:29:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:29:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:29:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:29:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:30:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:30:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:30:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:30:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:31:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:31:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:31:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:31:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:32:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:32:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:32:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:32:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:33:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:33:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:33:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:33:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:34:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:34:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:34:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:34:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:35:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:35:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:35:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:35:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:36:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:36:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:36:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:36:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:37:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:37:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:37:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:37:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:38:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:38:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:38:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:38:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:39:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:39:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:39:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:39:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:40:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:40:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:40:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:40:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:41:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:41:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:41:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:41:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:42:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:42:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:42:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:42:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:43:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:43:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:43:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:43:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:44:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:44:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:44:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:44:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:45:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:45:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:45:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:45:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:46:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:46:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:46:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:46:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:47:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:47:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:47:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:47:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:48:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:48:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:48:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:48:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:49:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:49:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:49:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:49:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:50:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:50:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:50:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:50:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:51:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:51:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:51:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:51:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:52:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:52:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:52:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:52:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:53:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:53:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:53:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:53:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:54:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:54:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:54:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:54:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:55:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:55:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:55:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:55:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:56:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:56:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:56:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:56:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:57:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:57:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:57:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:57:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:58:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:58:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:58:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:58:55 #2733.1] TRACE check fd=26 +[2018-06-06 15:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:59:25 #2733.1] TRACE check fd=7 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=8 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=9 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=10 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=11 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=12 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=13 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=14 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=15 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=16 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=17 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=18 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=19 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=20 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=21 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=22 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=23 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=24 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=25 +[2018-06-06 15:59:25 #2733.1] TRACE check fd=26 +[2018-06-06 15:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 15:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 15:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 15:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 15:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 15:59:55 #2733.1] TRACE check fd=7 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=8 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=9 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=10 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=11 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=12 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=13 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=14 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=15 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=16 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=17 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=18 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=19 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=20 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=21 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=22 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=23 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=24 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=25 +[2018-06-06 15:59:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:00:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:00:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:00:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:00:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:01:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:01:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:01:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:01:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:02:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:02:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:02:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:02:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:03:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:03:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:03:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:03:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:04:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:04:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:04:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:04:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:05:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:05:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:05:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:05:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:06:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:06:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:06:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:06:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:07:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:07:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:07:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:07:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:08:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:08:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:08:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:08:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:09:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:09:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:09:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:09:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:10:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:10:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:10:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:10:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:11:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:11:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:11:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:11:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:12:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:12:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:12:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:12:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:13:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:13:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:13:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:13:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:14:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:14:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:14:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:14:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:15:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:15:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:15:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:15:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:16:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:16:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:16:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:16:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:17:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:17:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:17:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:17:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:18:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:18:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:18:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:18:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:19:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:19:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:19:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:19:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:20:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:20:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:20:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:20:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:21:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:21:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:21:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:21:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:22:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:22:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:22:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:22:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:23:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:23:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:23:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:23:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:24:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:24:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:24:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:24:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:25:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:25:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:25:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:25:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:26:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:26:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:26:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:26:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:27:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:27:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:27:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:27:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:28:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:28:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:28:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:28:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:29:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:29:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:29:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:29:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:30:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:30:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:30:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:30:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:31:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:31:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:31:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:31:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:32:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:32:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:32:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:32:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:33:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:33:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:33:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:33:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:34:25 #2733.1] TRACE check fd=7 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=8 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=9 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=10 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=11 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=12 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=13 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=14 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=15 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=16 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=17 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=18 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=19 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=20 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=21 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=22 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=23 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=24 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=25 +[2018-06-06 16:34:25 #2733.1] TRACE check fd=26 +[2018-06-06 16:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:34:55 #2733.1] TRACE check fd=7 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=8 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=9 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=10 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=11 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=12 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=13 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=14 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=15 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=16 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=17 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=18 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=19 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=20 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=21 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=22 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=23 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=24 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=25 +[2018-06-06 16:34:55 #2733.1] TRACE check fd=26 +[2018-06-06 16:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 16:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 16:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 16:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 16:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 16:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 16:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 16:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 16:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 16:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 17:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 17:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 17:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 17:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 17:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 17:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 17:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 17:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 17:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 18:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 18:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 18:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 18:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 18:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 18:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 18:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 18:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 18:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 19:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 19:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 19:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 19:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 19:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 19:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 19:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 19:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 19:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 20:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 20:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 20:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 20:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 20:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 20:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 20:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 20:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 20:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 21:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 21:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 21:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 21:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 21:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 21:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 21:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 21:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 21:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:32:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:32:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:32:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:32:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:33:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:33:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:33:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:33:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:34:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:34:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:34:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:34:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:35:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:35:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:35:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:35:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:36:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:36:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:36:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:36:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:37:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:37:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:37:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:37:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:38:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:38:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:38:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:38:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:39:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:39:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:39:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:39:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:40:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:40:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:40:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:40:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:41:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:41:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:41:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:41:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:42:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:42:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:42:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:42:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:43:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:43:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:43:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:43:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:44:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:44:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:44:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:44:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:45:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:45:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:45:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:45:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:46:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:46:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:46:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:46:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:47:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:47:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:47:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:47:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:48:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:48:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:48:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:48:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:49:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:49:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:49:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:49:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:50:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:50:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:50:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:50:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:51:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:51:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:51:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:51:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:52:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:52:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:52:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:52:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:53:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:53:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:53:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:53:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:54:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:54:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:54:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:54:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:55:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:55:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:55:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:55:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:56:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:56:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:56:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:56:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:57:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:57:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:57:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:57:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:58:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:58:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:58:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:58:56 #2733.1] TRACE check fd=26 +[2018-06-06 22:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:59:26 #2733.1] TRACE check fd=7 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=8 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=9 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=10 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=11 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=12 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=13 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=14 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=15 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=16 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=17 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=18 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=19 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=20 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=21 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=22 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=23 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=24 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=25 +[2018-06-06 22:59:26 #2733.1] TRACE check fd=26 +[2018-06-06 22:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 22:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 22:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 22:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 22:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 22:59:56 #2733.1] TRACE check fd=7 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=8 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=9 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=10 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=11 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=12 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=13 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=14 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=15 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=16 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=17 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=18 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=19 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=20 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=21 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=22 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=23 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=24 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=25 +[2018-06-06 22:59:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:00:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:00:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:00:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:00:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:01:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:01:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:01:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:01:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:02:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:02:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:02:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:02:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:03:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:03:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:03:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:03:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:04:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:04:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:04:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:04:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:05:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:05:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:05:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:05:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:06:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:06:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:06:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:06:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:07:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:07:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:07:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:07:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:08:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:08:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:08:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:08:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:09:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:09:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:09:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:09:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:10:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:10:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:10:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:10:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:11:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:11:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:11:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:11:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:12:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:12:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:12:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:12:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:13:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:13:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:13:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:13:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:14:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:14:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:14:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:14:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:15:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:15:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:15:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:15:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:16:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:16:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:16:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:16:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:17:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:17:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:17:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:17:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:18:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:18:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:18:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:18:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:19:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:19:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:19:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:19:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:20:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:20:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:20:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:20:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:21:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:21:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:21:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:21:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:22:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:22:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:22:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:22:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:23:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:23:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:23:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:23:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:24:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:24:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:24:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:24:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:25:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:25:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:25:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:25:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:26:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:26:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:26:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:26:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:27:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:27:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:27:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:27:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:28:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:28:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:28:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:28:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:29:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:29:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:29:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:29:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:30:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:30:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:30:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:30:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:31:26 #2733.1] TRACE check fd=7 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=8 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=9 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=10 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=11 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=12 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=13 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=14 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=15 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=16 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=17 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=18 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=19 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=20 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=21 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=22 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=23 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=24 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=25 +[2018-06-06 23:31:26 #2733.1] TRACE check fd=26 +[2018-06-06 23:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:31:56 #2733.1] TRACE check fd=7 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=8 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=9 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=10 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=11 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=12 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=13 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=14 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=15 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=16 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=17 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=18 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=19 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=20 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=21 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=22 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=23 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=24 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=25 +[2018-06-06 23:31:56 #2733.1] TRACE check fd=26 +[2018-06-06 23:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:32:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:32:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:32:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:32:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:33:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:33:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:33:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:33:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:34:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:34:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:34:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:34:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:35:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:35:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:35:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:35:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:36:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:36:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:36:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:36:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:37:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:37:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:37:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:37:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:38:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:38:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:38:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:38:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:39:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:39:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:39:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:39:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:40:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:40:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:40:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:40:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:41:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:41:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:41:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:41:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:42:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:42:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:42:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:42:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:43:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:43:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:43:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:43:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:44:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:44:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:44:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:44:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:45:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:45:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:45:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:45:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:46:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:46:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:46:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:46:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:47:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:47:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:47:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:47:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:48:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:48:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:48:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:48:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:49:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:49:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:49:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:49:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:50:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:50:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:50:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:50:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:51:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:51:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:51:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:51:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:52:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:52:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:52:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:52:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:53:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:53:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:53:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:53:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:54:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:54:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:54:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:54:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:55:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:55:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:55:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:55:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:56:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:56:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:56:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:56:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:57:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:57:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:57:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:57:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:58:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:58:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:58:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:58:57 #2733.1] TRACE check fd=26 +[2018-06-06 23:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:59:27 #2733.1] TRACE check fd=7 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=8 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=9 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=10 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=11 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=12 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=13 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=14 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=15 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=16 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=17 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=18 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=19 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=20 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=21 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=22 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=23 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=24 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=25 +[2018-06-06 23:59:27 #2733.1] TRACE check fd=26 +[2018-06-06 23:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-06 23:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-06 23:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-06 23:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-06 23:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-06 23:59:57 #2733.1] TRACE check fd=7 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=8 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=9 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=10 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=11 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=12 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=13 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=14 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=15 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=16 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=17 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=18 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=19 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=20 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=21 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=22 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=23 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=24 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=25 +[2018-06-06 23:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 00:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 00:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 00:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 00:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 00:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 00:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 00:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 00:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 00:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 01:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 01:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 01:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 01:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 01:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 01:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 01:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 01:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 01:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 02:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 02:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 02:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 02:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 02:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 02:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 02:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 02:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 02:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 03:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 03:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 03:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 03:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 03:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 03:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 03:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 03:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 03:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 04:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 04:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 04:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 04:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 04:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 04:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 04:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 04:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 04:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:33:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:33:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:34:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:34:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:34:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:34:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:35:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:35:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:35:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:35:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:36:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:36:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:36:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:36:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:37:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:37:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:37:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:37:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:38:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:38:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:38:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:38:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:39:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:39:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:39:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:39:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:40:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:40:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:40:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:40:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:41:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:41:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:41:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:41:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:42:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:42:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:42:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:42:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:43:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:43:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:43:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:43:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:44:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:44:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:44:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:44:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:45:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:45:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:45:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:45:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:46:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:46:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:46:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:46:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:47:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:47:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:47:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:47:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:48:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:48:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:48:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:48:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:49:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:49:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:49:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:49:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:50:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:50:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:50:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:50:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:51:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:51:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:51:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:51:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:52:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:52:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:52:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:52:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:53:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:53:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:53:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:53:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:54:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:54:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:54:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:54:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:55:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:55:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:55:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:55:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:56:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:56:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:56:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:56:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:57:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:57:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:57:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:57:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:58:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:58:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:58:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:58:57 #2733.1] TRACE check fd=26 +[2018-06-07 05:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:59:27 #2733.1] TRACE check fd=7 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=8 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=9 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=10 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=11 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=12 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=13 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=14 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=15 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=16 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=17 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=18 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=19 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=20 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=21 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=22 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=23 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=24 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=25 +[2018-06-07 05:59:27 #2733.1] TRACE check fd=26 +[2018-06-07 05:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 05:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 05:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 05:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 05:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 05:59:57 #2733.1] TRACE check fd=7 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=8 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=9 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=10 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=11 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=12 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=13 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=14 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=15 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=16 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=17 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=18 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=19 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=20 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=21 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=22 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=23 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=24 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=25 +[2018-06-07 05:59:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:00:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:00:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:00:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:00:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:01:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:01:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:01:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:01:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:02:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:02:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:02:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:02:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:03:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:03:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:03:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:03:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:04:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:04:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:04:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:04:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:05:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:05:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:05:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:05:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:06:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:06:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:06:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:06:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:07:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:07:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:07:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:07:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:08:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:08:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:08:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:08:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:09:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:09:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:09:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:09:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:10:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:10:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:10:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:10:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:11:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:11:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:11:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:11:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:12:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:12:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:12:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:12:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:13:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:13:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:13:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:13:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:14:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:14:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:14:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:14:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:15:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:15:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:15:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:15:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:16:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:16:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:16:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:16:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:17:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:17:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:17:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:17:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:18:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:18:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:18:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:18:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:19:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:19:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:19:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:19:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:20:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:20:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:20:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:20:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:21:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:21:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:21:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:21:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:22:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:22:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:22:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:22:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:23:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:23:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:23:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:23:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:24:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:24:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:24:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:24:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:25:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:25:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:25:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:25:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:26:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:26:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:26:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:26:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:27:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:27:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:27:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:27:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:28:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:28:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:28:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:28:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:29:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:29:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:29:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:29:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:30:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:30:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:30:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:30:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:31:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:31:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:31:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:31:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:32:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:32:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:32:57 #2733.1] TRACE check fd=7 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=8 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=9 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=10 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=11 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=12 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=13 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=14 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=15 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=16 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=17 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=18 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=19 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=20 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=21 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=22 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=23 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=24 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=25 +[2018-06-07 06:32:57 #2733.1] TRACE check fd=26 +[2018-06-07 06:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:33:27 #2733.1] TRACE check fd=7 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=8 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=9 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=10 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=11 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=12 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=13 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=14 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=15 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=16 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=17 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=18 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=19 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=20 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=21 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=22 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=23 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=24 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=25 +[2018-06-07 06:33:27 #2733.1] TRACE check fd=26 +[2018-06-07 06:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 06:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 06:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 06:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 06:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 06:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 06:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 06:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 06:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 06:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 07:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 07:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 07:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 07:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 07:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 07:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 07:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 07:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 07:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 08:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 08:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 08:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 08:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 08:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 08:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 08:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 08:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 08:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 09:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 09:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 09:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 09:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 09:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 09:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 09:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 09:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 09:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 10:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 10:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 10:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 10:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 10:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 10:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 10:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 10:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 10:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 11:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 11:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 11:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 11:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 11:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 11:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 11:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 11:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 11:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:40:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:40:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:41:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:41:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:41:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:41:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:42:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:42:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:42:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:42:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:43:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:43:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:43:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:43:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:44:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:44:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:44:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:44:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:45:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:45:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:45:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:45:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:46:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:46:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:46:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:46:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:47:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:47:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:47:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:47:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:48:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:48:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:48:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:48:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:49:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:49:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:49:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:49:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:50:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:50:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:50:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:50:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:51:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:51:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:51:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:51:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:52:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:52:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:52:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:52:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:53:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:53:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:53:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:53:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:54:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:54:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:54:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:54:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:55:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:55:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:55:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:55:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:56:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:56:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:56:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:56:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:57:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:57:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:57:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:57:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:58:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:58:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:58:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:58:58 #2733.1] TRACE check fd=26 +[2018-06-07 12:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:59:28 #2733.1] TRACE check fd=7 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=8 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=9 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=10 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=11 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=12 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=13 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=14 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=15 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=16 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=17 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=18 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=19 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=20 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=21 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=22 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=23 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=24 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=25 +[2018-06-07 12:59:28 #2733.1] TRACE check fd=26 +[2018-06-07 12:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 12:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 12:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 12:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 12:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 12:59:58 #2733.1] TRACE check fd=7 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=8 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=9 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=10 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=11 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=12 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=13 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=14 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=15 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=16 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=17 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=18 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=19 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=20 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=21 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=22 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=23 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=24 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=25 +[2018-06-07 12:59:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:00:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:00:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:00:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:00:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:01:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:01:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:01:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:01:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:02:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:02:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:02:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:02:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:03:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:03:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:03:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:03:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:04:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:04:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:04:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:04:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:05:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:05:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:05:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:05:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:06:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:06:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:06:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:06:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:07:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:07:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:07:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:07:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:08:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:08:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:08:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:08:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:09:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:09:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:09:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:09:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:10:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:10:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:10:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:10:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:11:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:11:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:11:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:11:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:12:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:12:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:12:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:12:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:13:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:13:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:13:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:13:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:14:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:14:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:14:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:14:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:15:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:15:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:15:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:15:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:16:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:16:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:16:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:16:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:17:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:17:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:17:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:17:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:18:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:18:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:18:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:18:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:19:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:19:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:19:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:19:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:20:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:20:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:20:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:20:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:21:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:21:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:21:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:21:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:22:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:22:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:22:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:22:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:23:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:23:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:23:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:23:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:24:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:24:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:24:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:24:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:25:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:25:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:25:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:25:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:26:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:26:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:26:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:26:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:27:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:27:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:27:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:27:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:28:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:28:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:28:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:28:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:29:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:29:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:29:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:29:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:30:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:30:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:30:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:30:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:31:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:31:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:31:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:31:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:32:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:32:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:32:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:32:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:33:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:33:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:33:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:33:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:34:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:34:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:34:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:34:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:35:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:35:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:35:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:35:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:36:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:36:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:36:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:36:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:37:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:37:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:37:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:37:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:38:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:38:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:38:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:38:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:39:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:39:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:39:58 #2733.1] TRACE check fd=7 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=8 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=9 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=10 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=11 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=12 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=13 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=14 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=15 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=16 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=17 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=18 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=19 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=20 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=21 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=22 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=23 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=24 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=25 +[2018-06-07 13:39:58 #2733.1] TRACE check fd=26 +[2018-06-07 13:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:40:28 #2733.1] TRACE check fd=7 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=8 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=9 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=10 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=11 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=12 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=13 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=14 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=15 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=16 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=17 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=18 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=19 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=20 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=21 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=22 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=23 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=24 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=25 +[2018-06-07 13:40:28 #2733.1] TRACE check fd=26 +[2018-06-07 13:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 13:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 13:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 13:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 13:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 13:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 13:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 13:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 13:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 13:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 14:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 14:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 14:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 14:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 14:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 14:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 14:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 14:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 14:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 15:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 15:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 15:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 15:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 15:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 15:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 15:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 15:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 15:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 16:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 16:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 16:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 16:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 16:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 16:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 16:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 16:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 16:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 17:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 17:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 17:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 17:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 17:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 17:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 17:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 17:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 17:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 18:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 18:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 18:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 18:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 18:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 18:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 18:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 18:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 18:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:42:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:42:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:42:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:42:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:43:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:43:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:43:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:43:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:44:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:44:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:44:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:44:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:45:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:45:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:45:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:45:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:46:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:46:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:46:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:46:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:47:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:47:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:47:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:47:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:48:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:48:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:48:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:48:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:49:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:49:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:49:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:49:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:50:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:50:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:50:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:50:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:51:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:51:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:51:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:51:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:52:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:52:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:52:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:52:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:53:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:53:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:53:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:53:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:54:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:54:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:54:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:54:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:55:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:55:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:55:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:55:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:56:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:56:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:56:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:56:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:57:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:57:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:57:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:57:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:58:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:58:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:58:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:58:59 #2733.1] TRACE check fd=26 +[2018-06-07 19:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:59:29 #2733.1] TRACE check fd=7 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=8 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=9 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=10 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=11 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=12 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=13 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=14 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=15 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=16 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=17 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=18 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=19 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=20 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=21 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=22 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=23 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=24 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=25 +[2018-06-07 19:59:29 #2733.1] TRACE check fd=26 +[2018-06-07 19:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 19:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 19:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 19:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 19:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 19:59:59 #2733.1] TRACE check fd=7 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=8 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=9 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=10 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=11 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=12 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=13 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=14 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=15 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=16 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=17 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=18 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=19 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=20 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=21 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=22 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=23 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=24 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=25 +[2018-06-07 19:59:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:00:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:00:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:00:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:00:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:01:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:01:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:01:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:01:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:02:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:02:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:02:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:02:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:03:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:03:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:03:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:03:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:04:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:04:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:04:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:04:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:05:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:05:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:05:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:05:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:06:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:06:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:06:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:06:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:07:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:07:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:07:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:07:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:08:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:08:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:08:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:08:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:09:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:09:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:09:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:09:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:10:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:10:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:10:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:10:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:11:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:11:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:11:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:11:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:12:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:12:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:12:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:12:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:13:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:13:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:13:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:13:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:14:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:14:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:14:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:14:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:15:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:15:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:15:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:15:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:16:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:16:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:16:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:16:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:17:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:17:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:17:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:17:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:18:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:18:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:18:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:18:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:19:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:19:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:19:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:19:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:20:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:20:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:20:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:20:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:21:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:21:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:21:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:21:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:22:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:22:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:22:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:22:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:23:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:23:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:23:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:23:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:24:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:24:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:24:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:24:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:25:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:25:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:25:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:25:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:26:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:26:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:26:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:26:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:27:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:27:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:27:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:27:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:28:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:28:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:28:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:28:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:29:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:29:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:29:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:29:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:30:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:30:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:30:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:30:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:31:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:31:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:31:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:31:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:32:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:32:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:32:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:32:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:33:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:33:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:33:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:33:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:34:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:34:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:34:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:34:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:35:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:35:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:35:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:35:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:36:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:36:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:36:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:36:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:37:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:37:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:37:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:37:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:38:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:38:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:38:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:38:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:39:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:39:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:39:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:39:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:40:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:40:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:40:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:40:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:41:29 #2733.1] TRACE check fd=7 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=8 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=9 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=10 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=11 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=12 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=13 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=14 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=15 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=16 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=17 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=18 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=19 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=20 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=21 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=22 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=23 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=24 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=25 +[2018-06-07 20:41:29 #2733.1] TRACE check fd=26 +[2018-06-07 20:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:41:59 #2733.1] TRACE check fd=7 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=8 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=9 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=10 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=11 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=12 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=13 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=14 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=15 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=16 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=17 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=18 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=19 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=20 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=21 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=22 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=23 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=24 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=25 +[2018-06-07 20:41:59 #2733.1] TRACE check fd=26 +[2018-06-07 20:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:42:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:42:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:43:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:43:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:43:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:43:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:44:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:44:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:44:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:44:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:45:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:45:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:45:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:45:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:46:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:46:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:46:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:46:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:47:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:47:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:47:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:47:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:48:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:48:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:48:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:48:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:49:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:49:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:49:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:49:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:50:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:50:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:50:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:50:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:51:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:51:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:51:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:51:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:52:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:52:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:52:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:52:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:53:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:53:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:53:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:53:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:54:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:54:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:54:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:54:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:55:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:55:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:55:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:55:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:56:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:56:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:56:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:56:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:57:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:57:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:57:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:57:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:58:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:58:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:58:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:58:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:59:00 #2733.1] TRACE check fd=7 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=8 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=9 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=10 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=11 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=12 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=13 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=14 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=15 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=16 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=17 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=18 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=19 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=20 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=21 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=22 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=23 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=24 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=25 +[2018-06-07 20:59:00 #2733.1] TRACE check fd=26 +[2018-06-07 20:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 20:59:30 #2733.1] TRACE check fd=7 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=8 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=9 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=10 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=11 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=12 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=13 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=14 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=15 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=16 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=17 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=18 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=19 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=20 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=21 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=22 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=23 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=24 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=25 +[2018-06-07 20:59:30 #2733.1] TRACE check fd=26 +[2018-06-07 20:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 20:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 20:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 20:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 20:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:00:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:00:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:00:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:00:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:01:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:01:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:01:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:01:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:02:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:02:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:02:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:02:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:03:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:03:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:03:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:03:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:04:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:04:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:04:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:04:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:05:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:05:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:05:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:05:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:06:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:06:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:06:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:06:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:07:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:07:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:07:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:07:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:08:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:08:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:08:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:08:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:09:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:09:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:09:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:09:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:10:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:10:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:10:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:10:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:11:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:11:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:11:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:11:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:12:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:12:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:12:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:12:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:13:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:13:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:13:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:13:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:14:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:14:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:14:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:14:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:15:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:15:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:15:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:15:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:16:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:16:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:16:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:16:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:17:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:17:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:17:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:17:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:18:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:18:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:18:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:18:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:19:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:19:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:19:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:19:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:20:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:20:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:20:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:20:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:21:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:21:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:21:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:21:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:22:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:22:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:22:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:22:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:23:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:23:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:23:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:23:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:24:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:24:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:24:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:24:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:25:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:25:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:25:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:25:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:26:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:26:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:26:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:26:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:27:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:27:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:27:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:27:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:28:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:28:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:28:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:28:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:29:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:29:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:29:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:29:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:30:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:30:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:30:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:30:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:31:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:31:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:31:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:31:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:32:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:32:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:32:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:32:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:33:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:33:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:33:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:33:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:34:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:34:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:34:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:34:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:35:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:35:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:35:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:35:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:36:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:36:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:36:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:36:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:37:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:37:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:37:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:37:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:38:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:38:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:38:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:38:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:39:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:39:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:39:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:39:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:40:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:40:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:40:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:40:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:41:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:41:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:41:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:41:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:42:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:42:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:42:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:42:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:43:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:43:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:43:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:43:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:44:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:44:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:44:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:44:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:45:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:45:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:45:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:45:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:46:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:46:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:46:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:46:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:47:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:47:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:47:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:47:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:48:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:48:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:48:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:48:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:49:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:49:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:49:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:49:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:50:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:50:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:50:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:50:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:51:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:51:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:51:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:51:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:52:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:52:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:52:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:52:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:53:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:53:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:53:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:53:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:54:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:54:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:54:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:54:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:55:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:55:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:55:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:55:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:56:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:56:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:56:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:56:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:57:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:57:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:57:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:57:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:58:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:58:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:58:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:58:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:59:00 #2733.1] TRACE check fd=7 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=8 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=9 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=10 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=11 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=12 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=13 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=14 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=15 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=16 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=17 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=18 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=19 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=20 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=21 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=22 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=23 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=24 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=25 +[2018-06-07 21:59:00 #2733.1] TRACE check fd=26 +[2018-06-07 21:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 21:59:30 #2733.1] TRACE check fd=7 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=8 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=9 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=10 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=11 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=12 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=13 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=14 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=15 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=16 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=17 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=18 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=19 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=20 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=21 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=22 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=23 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=24 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=25 +[2018-06-07 21:59:30 #2733.1] TRACE check fd=26 +[2018-06-07 21:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 21:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 21:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 21:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 21:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:00:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:00:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:00:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:00:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:01:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:01:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:01:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:01:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:02:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:02:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:02:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:02:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:03:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:03:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:03:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:03:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:04:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:04:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:04:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:04:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:05:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:05:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:05:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:05:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:06:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:06:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:06:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:06:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:07:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:07:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:07:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:07:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:08:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:08:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:08:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:08:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:09:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:09:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:09:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:09:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:10:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:10:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:10:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:10:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:11:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:11:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:11:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:11:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:12:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:12:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:12:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:12:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:13:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:13:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:13:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:13:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:14:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:14:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:14:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:14:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:15:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:15:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:15:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:15:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:16:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:16:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:16:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:16:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:17:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:17:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:17:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:17:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:18:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:18:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:18:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:18:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:19:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:19:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:19:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:19:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:20:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:20:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:20:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:20:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:21:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:21:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:21:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:21:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:22:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:22:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:22:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:22:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:23:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:23:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:23:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:23:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:24:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:24:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:24:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:24:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:25:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:25:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:25:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:25:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:26:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:26:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:26:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:26:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:27:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:27:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:27:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:27:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:28:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:28:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:28:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:28:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:29:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:29:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:29:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:29:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:30:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:30:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:30:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:30:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:31:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:31:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:31:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:31:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:32:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:32:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:32:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:32:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:33:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:33:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:33:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:33:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:34:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:34:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:34:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:34:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:35:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:35:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:35:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:35:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:36:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:36:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:36:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:36:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:37:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:37:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:37:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:37:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:38:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:38:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:38:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:38:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:39:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:39:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:39:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:39:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:40:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:40:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:40:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:40:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:41:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:41:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:41:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:41:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:42:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:42:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:42:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:42:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:43:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:43:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:43:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:43:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:44:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:44:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:44:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:44:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:45:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:45:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:45:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:45:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:46:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:46:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:46:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:46:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:47:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:47:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:47:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:47:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:48:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:48:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:48:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:48:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:49:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:49:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:49:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:49:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:50:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:50:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:50:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:50:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:51:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:51:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:51:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:51:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:52:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:52:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:52:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:52:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:53:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:53:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:53:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:53:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:54:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:54:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:54:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:54:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:55:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:55:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:55:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:55:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:56:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:56:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:56:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:56:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:57:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:57:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:57:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:57:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:58:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:58:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:58:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:58:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:59:00 #2733.1] TRACE check fd=7 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=8 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=9 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=10 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=11 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=12 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=13 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=14 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=15 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=16 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=17 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=18 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=19 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=20 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=21 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=22 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=23 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=24 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=25 +[2018-06-07 22:59:00 #2733.1] TRACE check fd=26 +[2018-06-07 22:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 22:59:30 #2733.1] TRACE check fd=7 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=8 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=9 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=10 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=11 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=12 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=13 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=14 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=15 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=16 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=17 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=18 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=19 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=20 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=21 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=22 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=23 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=24 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=25 +[2018-06-07 22:59:30 #2733.1] TRACE check fd=26 +[2018-06-07 22:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 22:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 22:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 22:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 22:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:00:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:00:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:00:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:00:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:01:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:01:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:01:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:01:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:02:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:02:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:02:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:02:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:03:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:03:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:03:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:03:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:04:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:04:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:04:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:04:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:05:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:05:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:05:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:05:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:06:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:06:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:06:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:06:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:07:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:07:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:07:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:07:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:08:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:08:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:08:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:08:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:09:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:09:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:09:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:09:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:10:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:10:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:10:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:10:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:11:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:11:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:11:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:11:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:12:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:12:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:12:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:12:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:13:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:13:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:13:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:13:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:14:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:14:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:14:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:14:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:15:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:15:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:15:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:15:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:16:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:16:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:16:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:16:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:17:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:17:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:17:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:17:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:18:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:18:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:18:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:18:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:19:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:19:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:19:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:19:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:20:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:20:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:20:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:20:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:21:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:21:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:21:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:21:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:22:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:22:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:22:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:22:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:23:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:23:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:23:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:23:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:24:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:24:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:24:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:24:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:25:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:25:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:25:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:25:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:26:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:26:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:26:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:26:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:27:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:27:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:27:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:27:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:28:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:28:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:28:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:28:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:29:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:29:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:29:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:29:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:30:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:30:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:30:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:30:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:31:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:31:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:31:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:31:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:32:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:32:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:32:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:32:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:33:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:33:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:33:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:33:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:34:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:34:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:34:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:34:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:35:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:35:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:35:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:35:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:36:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:36:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:36:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:36:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:37:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:37:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:37:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:37:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:38:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:38:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:38:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:38:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:39:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:39:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:39:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:39:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:40:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:40:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:40:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:40:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:41:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:41:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:41:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:41:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:42:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:42:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:42:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:42:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:43:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:43:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:43:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:43:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:44:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:44:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:44:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:44:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:45:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:45:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:45:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:45:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:46:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:46:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:46:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:46:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:47:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:47:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:47:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:47:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:48:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:48:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:48:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:48:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:49:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:49:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:49:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:49:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:50:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:50:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:50:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:50:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:51:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:51:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:51:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:51:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:52:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:52:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:52:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:52:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:53:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:53:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:53:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:53:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:54:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:54:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:54:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:54:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:55:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:55:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:55:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:55:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:56:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:56:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:56:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:56:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:57:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:57:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:57:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:57:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:58:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:58:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:58:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:58:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:59:00 #2733.1] TRACE check fd=7 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=8 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=9 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=10 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=11 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=12 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=13 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=14 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=15 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=16 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=17 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=18 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=19 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=20 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=21 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=22 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=23 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=24 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=25 +[2018-06-07 23:59:00 #2733.1] TRACE check fd=26 +[2018-06-07 23:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-07 23:59:30 #2733.1] TRACE check fd=7 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=8 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=9 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=10 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=11 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=12 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=13 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=14 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=15 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=16 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=17 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=18 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=19 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=20 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=21 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=22 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=23 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=24 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=25 +[2018-06-07 23:59:30 #2733.1] TRACE check fd=26 +[2018-06-07 23:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-07 23:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-07 23:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-07 23:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-07 23:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:00:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:00:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:00:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:00:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:01:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:01:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:01:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:01:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:02:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:02:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:02:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:02:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:03:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:03:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:03:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:03:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:04:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:04:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:04:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:04:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:05:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:05:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:05:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:05:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:06:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:06:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:06:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:06:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:07:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:07:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:07:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:07:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:08:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:08:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:08:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:08:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:09:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:09:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:09:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:09:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:10:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:10:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:10:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:10:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:11:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:11:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:11:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:11:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:12:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:12:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:12:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:12:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:13:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:13:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:13:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:13:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:14:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:14:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:14:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:14:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:15:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:15:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:15:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:15:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:16:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:16:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:16:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:16:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:17:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:17:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:17:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:17:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:18:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:18:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:18:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:18:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:19:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:19:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:19:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:19:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:20:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:20:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:20:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:20:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:21:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:21:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:21:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:21:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:22:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:22:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:22:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:22:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:23:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:23:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:23:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:23:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:24:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:24:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:24:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:24:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:25:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:25:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:25:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:25:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:26:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:26:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:26:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:26:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:27:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:27:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:27:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:27:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:28:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:28:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:28:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:28:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:29:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:29:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:29:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:29:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:30:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:30:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:30:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:30:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:31:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:31:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:31:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:31:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:32:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:32:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:32:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:32:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:33:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:33:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:33:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:33:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:34:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:34:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:34:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:34:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:35:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:35:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:35:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:35:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:36:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:36:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:36:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:36:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:37:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:37:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:37:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:37:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:38:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:38:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:38:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:38:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:39:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:39:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:39:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:39:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:40:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:40:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:40:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:40:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:41:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:41:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:41:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:41:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:42:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:42:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:42:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:42:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:43:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:43:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:43:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:43:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:44:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:44:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:44:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:44:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:45:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:45:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:45:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:45:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:46:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:46:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:46:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:46:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:47:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:47:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:47:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:47:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:48:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:48:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:48:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:48:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:49:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:49:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:49:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:49:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:50:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:50:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:50:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:50:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:51:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:51:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:51:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:51:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:52:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:52:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:52:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:52:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:53:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:53:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:53:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:53:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:54:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:54:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:54:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:54:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:55:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:55:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:55:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:55:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:56:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:56:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:56:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:56:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:57:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:57:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:57:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:57:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:58:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:58:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:58:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:58:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:59:00 #2733.1] TRACE check fd=7 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=8 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=9 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=10 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=11 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=12 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=13 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=14 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=15 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=16 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=17 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=18 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=19 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=20 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=21 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=22 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=23 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=24 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=25 +[2018-06-08 00:59:00 #2733.1] TRACE check fd=26 +[2018-06-08 00:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 00:59:30 #2733.1] TRACE check fd=7 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=8 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=9 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=10 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=11 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=12 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=13 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=14 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=15 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=16 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=17 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=18 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=19 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=20 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=21 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=22 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=23 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=24 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=25 +[2018-06-08 00:59:30 #2733.1] TRACE check fd=26 +[2018-06-08 00:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 00:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 00:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 00:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 00:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:00:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:00:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:00:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:00:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:01:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:01:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:01:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:01:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:02:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:02:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:02:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:02:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:03:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:03:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:03:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:03:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:04:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:04:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:04:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:04:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:05:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:05:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:05:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:05:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:06:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:06:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:06:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:06:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:07:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:07:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:07:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:07:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:08:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:08:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:08:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:08:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:09:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:09:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:09:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:09:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:10:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:10:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:10:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:10:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:11:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:11:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:11:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:11:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:12:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:12:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:12:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:12:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:13:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:13:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:13:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:13:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:14:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:14:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:14:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:14:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:15:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:15:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:15:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:15:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:16:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:16:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:16:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:16:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:17:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:17:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:17:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:17:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:18:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:18:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:18:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:18:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:19:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:19:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:19:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:19:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:20:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:20:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:20:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:20:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:21:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:21:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:21:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:21:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:22:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:22:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:22:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:22:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:23:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:23:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:23:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:23:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:24:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:24:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:24:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:24:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:25:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:25:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:25:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:25:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:26:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:26:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:26:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:26:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:27:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:27:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:27:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:27:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:28:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:28:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:28:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:28:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:29:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:29:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:29:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:29:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:30:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:30:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:30:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:30:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:31:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:31:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:31:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:31:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:32:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:32:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:32:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:32:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:33:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:33:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:33:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:33:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:34:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:34:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:34:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:34:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:35:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:35:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:35:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:35:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:36:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:36:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:36:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:36:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:37:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:37:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:37:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:37:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:38:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:38:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:38:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:38:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:39:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:39:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:39:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:39:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:40:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:40:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:40:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:40:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:41:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:41:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:41:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:41:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:42:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:42:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:42:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:42:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:43:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:43:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:43:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:43:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:44:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:44:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:44:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:44:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:45:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:45:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:45:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:45:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:46:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:46:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:46:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:46:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:47:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:47:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:47:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:47:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:48:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:48:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:48:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:48:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:49:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:49:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:49:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:49:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:50:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:50:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:50:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:50:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:51:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:51:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:51:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:51:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:52:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:52:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:52:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:52:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:53:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:53:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:53:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:53:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:54:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:54:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:54:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:54:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:55:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:55:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:55:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:55:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:56:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:56:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:56:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:56:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:57:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:57:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:57:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:57:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:58:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:58:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:58:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:58:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:59:00 #2733.1] TRACE check fd=7 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=8 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=9 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=10 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=11 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=12 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=13 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=14 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=15 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=16 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=17 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=18 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=19 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=20 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=21 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=22 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=23 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=24 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=25 +[2018-06-08 01:59:00 #2733.1] TRACE check fd=26 +[2018-06-08 01:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 01:59:30 #2733.1] TRACE check fd=7 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=8 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=9 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=10 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=11 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=12 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=13 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=14 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=15 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=16 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=17 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=18 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=19 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=20 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=21 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=22 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=23 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=24 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=25 +[2018-06-08 01:59:30 #2733.1] TRACE check fd=26 +[2018-06-08 01:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 01:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 01:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 01:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 01:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:00:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:00:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:00:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:00:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:01:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:01:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:01:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:01:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:02:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:02:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:02:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:02:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:03:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:03:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:03:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:03:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:04:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:04:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:04:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:04:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:05:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:05:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:05:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:05:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:06:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:06:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:06:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:06:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:07:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:07:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:07:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:07:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:08:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:08:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:08:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:08:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:09:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:09:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:09:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:09:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:10:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:10:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:10:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:10:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:11:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:11:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:11:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:11:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:12:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:12:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:12:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:12:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:13:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:13:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:13:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:13:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:14:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:14:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:14:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:14:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:15:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:15:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:15:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:15:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:16:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:16:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:16:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:16:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:17:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:17:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:17:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:17:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:18:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:18:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:18:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:18:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:19:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:19:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:19:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:19:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:20:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:20:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:20:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:20:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:21:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:21:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:21:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:21:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:22:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:22:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:22:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:22:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:23:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:23:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:23:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:23:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:24:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:24:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:24:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:24:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:25:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:25:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:25:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:25:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:26:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:26:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:26:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:26:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:27:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:27:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:27:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:27:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:28:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:28:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:28:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:28:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:29:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:29:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:29:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:29:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:30:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:30:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:30:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:30:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:31:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:31:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:31:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:31:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:32:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:32:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:32:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:32:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:33:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:33:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:33:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:33:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:34:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:34:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:34:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:34:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:35:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:35:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:35:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:35:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:36:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:36:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:36:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:36:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:37:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:37:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:37:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:37:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:38:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:38:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:38:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:38:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:39:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:39:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:39:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:39:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:40:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:40:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:40:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:40:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:41:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:41:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:41:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:41:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:42:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:42:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:42:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:42:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:43:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:43:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:43:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:43:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:44:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:44:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:44:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:44:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:45:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:45:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:45:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:45:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:46:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:46:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:46:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:46:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:47:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:47:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:47:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:47:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:48:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:48:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:48:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:48:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:49:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:49:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:49:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:49:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:50:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:50:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:50:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:50:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:51:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:51:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:51:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:51:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:52:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:52:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:52:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:52:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:53:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:53:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:53:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:53:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:54:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:54:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:54:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:54:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:55:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:55:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:55:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:55:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:56:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:56:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:56:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:56:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:57:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:57:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:57:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:57:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:58:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:58:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:58:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:58:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:59:00 #2733.1] TRACE check fd=7 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=8 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=9 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=10 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=11 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=12 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=13 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=14 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=15 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=16 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=17 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=18 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=19 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=20 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=21 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=22 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=23 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=24 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=25 +[2018-06-08 02:59:00 #2733.1] TRACE check fd=26 +[2018-06-08 02:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 02:59:30 #2733.1] TRACE check fd=7 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=8 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=9 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=10 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=11 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=12 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=13 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=14 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=15 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=16 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=17 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=18 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=19 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=20 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=21 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=22 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=23 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=24 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=25 +[2018-06-08 02:59:30 #2733.1] TRACE check fd=26 +[2018-06-08 02:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 02:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 02:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 02:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 02:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:00:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:00:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:00:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:00:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:01:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:01:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:01:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:01:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:02:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:02:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:02:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:02:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:03:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:03:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:03:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:03:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:04:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:04:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:04:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:04:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:05:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:05:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:05:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:05:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:06:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:06:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:06:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:06:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:07:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:07:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:07:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:07:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:08:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:08:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:08:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:08:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:09:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:09:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:09:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:09:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:10:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:10:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:10:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:10:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:11:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:11:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:11:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:11:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:12:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:12:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:12:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:12:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:13:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:13:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:13:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:13:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:14:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:14:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:14:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:14:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:15:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:15:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:15:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:15:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:16:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:16:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:16:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:16:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:17:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:17:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:17:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:17:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:18:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:18:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:18:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:18:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:19:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:19:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:19:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:19:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:20:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:20:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:20:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:20:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:21:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:21:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:21:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:21:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:22:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:22:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:22:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:22:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:23:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:23:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:23:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:23:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:24:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:24:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:24:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:24:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:25:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:25:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:25:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:25:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:26:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:26:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:26:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:26:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:27:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:27:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:27:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:27:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:28:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:28:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:28:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:28:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:29:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:29:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:29:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:29:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:30:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:30:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:30:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:30:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:31:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:31:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:31:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:31:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:32:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:32:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:32:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:32:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:33:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:33:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:33:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:33:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:34:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:34:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:34:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:34:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:35:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:35:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:35:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:35:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:36:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:36:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:36:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:36:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:37:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:37:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:37:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:37:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:38:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:38:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:38:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:38:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:39:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:39:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:39:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:39:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:40:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:40:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:40:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:40:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:41:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:41:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:41:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:41:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:42:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:42:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:42:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:42:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:43:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:43:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:43:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:43:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:44:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:44:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:44:30 #2733.1] TRACE check fd=7 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=8 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=9 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=10 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=11 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=12 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=13 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=14 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=15 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=16 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=17 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=18 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=19 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=20 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=21 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=22 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=23 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=24 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=25 +[2018-06-08 03:44:30 #2733.1] TRACE check fd=26 +[2018-06-08 03:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:45:00 #2733.1] TRACE check fd=7 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=8 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=9 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=10 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=11 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=12 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=13 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=14 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=15 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=16 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=17 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=18 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=19 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=20 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=21 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=22 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=23 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=24 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=25 +[2018-06-08 03:45:00 #2733.1] TRACE check fd=26 +[2018-06-08 03:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 03:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 03:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 03:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 03:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 03:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 03:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 03:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 03:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 03:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 04:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 04:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 04:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 04:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 04:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 04:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 04:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 04:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 04:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 05:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 05:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 05:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 05:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 05:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 05:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 05:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 05:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 05:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 06:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 06:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 06:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 06:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 06:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 06:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 06:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 06:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 06:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 07:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 07:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 07:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 07:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 07:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 07:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 07:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 07:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 07:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 08:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 08:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 08:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 08:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 08:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 08:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 08:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 08:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 08:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:45:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:45:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:46:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:46:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:46:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:46:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:47:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:47:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:47:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:47:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:48:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:48:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:48:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:48:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:49:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:49:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:49:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:49:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:50:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:50:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:50:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:50:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:51:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:51:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:51:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:51:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:52:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:52:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:52:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:52:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:53:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:53:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:53:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:53:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:54:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:54:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:54:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:54:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:55:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:55:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:55:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:55:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:56:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:56:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:56:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:56:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:57:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:57:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:57:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:57:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:58:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:58:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:58:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:58:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:59:01 #2733.1] TRACE check fd=7 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=8 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=9 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=10 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=11 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=12 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=13 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=14 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=15 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=16 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=17 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=18 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=19 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=20 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=21 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=22 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=23 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=24 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=25 +[2018-06-08 09:59:01 #2733.1] TRACE check fd=26 +[2018-06-08 09:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 09:59:31 #2733.1] TRACE check fd=7 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=8 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=9 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=10 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=11 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=12 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=13 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=14 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=15 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=16 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=17 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=18 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=19 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=20 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=21 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=22 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=23 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=24 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=25 +[2018-06-08 09:59:31 #2733.1] TRACE check fd=26 +[2018-06-08 09:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 09:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 09:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 09:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 09:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:00:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:00:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:00:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:00:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:01:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:01:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:01:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:01:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:02:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:02:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:02:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:02:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:03:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:03:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:03:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:03:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:04:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:04:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:04:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:04:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:05:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:05:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:05:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:05:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:06:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:06:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:06:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:06:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:07:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:07:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:07:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:07:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:08:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:08:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:08:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:08:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:09:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:09:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:09:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:09:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:10:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:10:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:10:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:10:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:11:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:11:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:11:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:11:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:12:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:12:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:12:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:12:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:13:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:13:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:13:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:13:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:14:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:14:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:14:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:14:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:15:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:15:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:15:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:15:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:16:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:16:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:16:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:16:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:17:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:17:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:17:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:17:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:18:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:18:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:18:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:18:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:19:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:19:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:19:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:19:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:20:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:20:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:20:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:20:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:21:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:21:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:21:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:21:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:22:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:22:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:22:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:22:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:23:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:23:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:23:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:23:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:24:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:24:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:24:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:24:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:25:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:25:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:25:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:25:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:26:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:26:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:26:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:26:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:27:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:27:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:27:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:27:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:28:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:28:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:28:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:28:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:29:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:29:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:29:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:29:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:30:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:30:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:30:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:30:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:31:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:31:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:31:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:31:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:32:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:32:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:32:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:32:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:33:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:33:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:33:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:33:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:34:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:34:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:34:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:34:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:35:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:35:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:35:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:35:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:36:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:36:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:36:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:36:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:37:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:37:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:37:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:37:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:38:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:38:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:38:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:38:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:39:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:39:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:39:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:39:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:40:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:40:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:40:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:40:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:41:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:41:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:41:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:41:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:42:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:42:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:42:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:42:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:43:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:43:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:43:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:43:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:44:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:44:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:44:31 #2733.1] TRACE check fd=7 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=8 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=9 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=10 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=11 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=12 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=13 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=14 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=15 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=16 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=17 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=18 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=19 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=20 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=21 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=22 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=23 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=24 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=25 +[2018-06-08 10:44:31 #2733.1] TRACE check fd=26 +[2018-06-08 10:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:45:01 #2733.1] TRACE check fd=7 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=8 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=9 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=10 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=11 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=12 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=13 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=14 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=15 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=16 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=17 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=18 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=19 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=20 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=21 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=22 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=23 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=24 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=25 +[2018-06-08 10:45:01 #2733.1] TRACE check fd=26 +[2018-06-08 10:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 10:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 10:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 10:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 10:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 10:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 10:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 10:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 10:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 10:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 11:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 11:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 11:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 11:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 11:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 11:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 11:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 11:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 11:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 12:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 12:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 12:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 12:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 12:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 12:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 12:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 12:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 12:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 13:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 13:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 13:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 13:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 13:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 13:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 13:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 13:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 13:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 14:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 14:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 14:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 14:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 14:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 14:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 14:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 14:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 14:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 15:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 15:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 15:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 15:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 15:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 15:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 15:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 15:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 15:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:47:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:47:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:47:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:47:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:48:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:48:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:48:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:48:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:49:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:49:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:49:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:49:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:50:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:50:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:50:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:50:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:51:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:51:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:51:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:51:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:52:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:52:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:52:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:52:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:53:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:53:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:53:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:53:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:54:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:54:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:54:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:54:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:55:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:55:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:55:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:55:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:56:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:56:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:56:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:56:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:57:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:57:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:57:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:57:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:58:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:58:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:58:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:58:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:59:02 #2733.1] TRACE check fd=7 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=8 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=9 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=10 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=11 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=12 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=13 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=14 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=15 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=16 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=17 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=18 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=19 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=20 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=21 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=22 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=23 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=24 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=25 +[2018-06-08 16:59:02 #2733.1] TRACE check fd=26 +[2018-06-08 16:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 16:59:32 #2733.1] TRACE check fd=7 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=8 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=9 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=10 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=11 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=12 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=13 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=14 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=15 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=16 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=17 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=18 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=19 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=20 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=21 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=22 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=23 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=24 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=25 +[2018-06-08 16:59:32 #2733.1] TRACE check fd=26 +[2018-06-08 16:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 16:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 16:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 16:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 16:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:00:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:00:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:00:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:00:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:01:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:01:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:01:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:01:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:02:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:02:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:02:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:02:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:03:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:03:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:03:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:03:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:04:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:04:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:04:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:04:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:05:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:05:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:05:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:05:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:06:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:06:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:06:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:06:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:07:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:07:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:07:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:07:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:08:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:08:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:08:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:08:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:09:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:09:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:09:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:09:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:10:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:10:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:10:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:10:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:11:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:11:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:11:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:11:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:12:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:12:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:12:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:12:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:13:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:13:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:13:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:13:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:14:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:14:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:14:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:14:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:15:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:15:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:15:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:15:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:16:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:16:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:16:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:16:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:17:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:17:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:17:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:17:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:18:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:18:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:18:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:18:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:19:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:19:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:19:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:19:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:20:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:20:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:20:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:20:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:21:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:21:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:21:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:21:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:22:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:22:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:22:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:22:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:23:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:23:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:23:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:23:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:24:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:24:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:24:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:24:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:25:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:25:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:25:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:25:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:26:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:26:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:26:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:26:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:27:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:27:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:27:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:27:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:28:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:28:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:28:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:28:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:29:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:29:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:29:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:29:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:30:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:30:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:30:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:30:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:31:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:31:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:31:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:31:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:32:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:32:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:32:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:32:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:33:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:33:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:33:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:33:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:34:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:34:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:34:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:34:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:35:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:35:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:35:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:35:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:36:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:36:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:36:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:36:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:37:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:37:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:37:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:37:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:38:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:38:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:38:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:38:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:39:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:39:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:39:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:39:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:40:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:40:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:40:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:40:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:41:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:41:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:41:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:41:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:42:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:42:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:42:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:42:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:43:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:43:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:43:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:43:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:44:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:44:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:44:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:44:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:45:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:45:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:45:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:45:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:46:02 #2733.1] TRACE check fd=7 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=8 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=9 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=10 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=11 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=12 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=13 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=14 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=15 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=16 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=17 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=18 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=19 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=20 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=21 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=22 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=23 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=24 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=25 +[2018-06-08 17:46:02 #2733.1] TRACE check fd=26 +[2018-06-08 17:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:46:32 #2733.1] TRACE check fd=7 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=8 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=9 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=10 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=11 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=12 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=13 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=14 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=15 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=16 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=17 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=18 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=19 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=20 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=21 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=22 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=23 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=24 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=25 +[2018-06-08 17:46:32 #2733.1] TRACE check fd=26 +[2018-06-08 17:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 17:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 17:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 17:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 17:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 17:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 17:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 17:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 17:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 17:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 18:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 18:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 18:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 18:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 18:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 18:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 18:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 18:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 18:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 19:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 19:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 19:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 19:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 19:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 19:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 19:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 19:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 19:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 20:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 20:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 20:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 20:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 20:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 20:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 20:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 20:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 20:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 21:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 21:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 21:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 21:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 21:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 21:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 21:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 21:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 21:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 22:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 22:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 22:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 22:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 22:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 22:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 22:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 22:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 22:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:00:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:00:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:00:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:00:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:01:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:01:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:01:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:01:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:02:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:02:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:02:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:02:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:03:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:03:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:03:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:03:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:04:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:04:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:04:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:04:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:05:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:05:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:05:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:05:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:06:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:06:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:06:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:06:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:07:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:07:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:07:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:07:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:08:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:08:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:08:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:08:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:09:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:09:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:09:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:09:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:10:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:10:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:10:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:10:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:11:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:11:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:11:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:11:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:12:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:12:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:12:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:12:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:13:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:13:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:13:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:13:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:14:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:14:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:14:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:14:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:15:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:15:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:15:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:15:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:16:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:16:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:16:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:16:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:17:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:17:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:17:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:17:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:18:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:18:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:18:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:18:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:19:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:19:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:19:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:19:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:20:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:20:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:20:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:20:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:21:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:21:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:21:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:21:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:22:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:22:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:22:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:22:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:23:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:23:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:23:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:23:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:24:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:24:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:24:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:24:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:25:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:25:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:25:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:25:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:26:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:26:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:26:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:26:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:27:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:27:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:27:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:27:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:28:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:28:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:28:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:28:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:29:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:29:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:29:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:29:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:30:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:30:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:30:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:30:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:31:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:31:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:31:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:31:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:32:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:32:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:32:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:32:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:33:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:33:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:33:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:33:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:34:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:34:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:34:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:34:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:35:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:35:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:35:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:35:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:36:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:36:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:36:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:36:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:37:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:37:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:37:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:37:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:38:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:38:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:38:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:38:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:39:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:39:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:39:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:39:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:40:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:40:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:40:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:40:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:41:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:41:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:41:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:41:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:42:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:42:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:42:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:42:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:43:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:43:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:43:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:43:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:44:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:44:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:44:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:44:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:45:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:45:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:45:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:45:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:46:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:46:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:46:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:46:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:47:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:47:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:47:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:47:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:48:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:48:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:48:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:48:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:49:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:49:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:49:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:49:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:50:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:50:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:50:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:50:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:51:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:51:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:51:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:51:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:52:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:52:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:52:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:52:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:53:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:53:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:53:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:53:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:54:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:54:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:54:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:54:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:55:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:55:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:55:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:55:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:56:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:56:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:56:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:56:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:57:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:57:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:57:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:57:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:58:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:58:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:58:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:58:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:59:03 #2733.1] TRACE check fd=7 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=8 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=9 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=10 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=11 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=12 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=13 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=14 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=15 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=16 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=17 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=18 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=19 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=20 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=21 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=22 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=23 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=24 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=25 +[2018-06-08 23:59:03 #2733.1] TRACE check fd=26 +[2018-06-08 23:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-08 23:59:33 #2733.1] TRACE check fd=7 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=8 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=9 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=10 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=11 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=12 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=13 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=14 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=15 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=16 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=17 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=18 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=19 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=20 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=21 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=22 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=23 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=24 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=25 +[2018-06-08 23:59:33 #2733.1] TRACE check fd=26 +[2018-06-08 23:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-08 23:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-08 23:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-08 23:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-08 23:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:00:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:00:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:00:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:00:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:01:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:01:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:01:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:01:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:02:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:02:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:02:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:02:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:03:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:03:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:03:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:03:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:04:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:04:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:04:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:04:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:05:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:05:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:05:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:05:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:06:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:06:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:06:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:06:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:07:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:07:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:07:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:07:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:08:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:08:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:08:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:08:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:09:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:09:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:09:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:09:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:10:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:10:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:10:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:10:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:11:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:11:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:11:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:11:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:12:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:12:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:12:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:12:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:13:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:13:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:13:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:13:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:14:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:14:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:14:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:14:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:15:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:15:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:15:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:15:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:16:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:16:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:16:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:16:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:17:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:17:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:17:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:17:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:18:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:18:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:18:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:18:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:19:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:19:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:19:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:19:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:20:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:20:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:20:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:20:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:21:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:21:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:21:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:21:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:22:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:22:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:22:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:22:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:23:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:23:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:23:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:23:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:24:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:24:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:24:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:24:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:25:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:25:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:25:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:25:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:26:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:26:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:26:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:26:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:27:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:27:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:27:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:27:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:28:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:28:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:28:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:28:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:29:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:29:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:29:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:29:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:30:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:30:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:30:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:30:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:31:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:31:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:31:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:31:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:32:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:32:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:32:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:32:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:33:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:33:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:33:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:33:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:34:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:34:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:34:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:34:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:35:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:35:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:35:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:35:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:36:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:36:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:36:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:36:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:37:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:37:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:37:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:37:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:38:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:38:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:38:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:38:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:39:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:39:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:39:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:39:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:40:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:40:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:40:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:40:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:41:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:41:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:41:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:41:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:42:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:42:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:42:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:42:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:43:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:43:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:43:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:43:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:44:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:44:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:44:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:44:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:45:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:45:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:45:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:45:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:46:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:46:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:46:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:46:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:47:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:47:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:47:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:47:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:48:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:48:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:48:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:48:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:49:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:49:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:49:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:49:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:50:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:50:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:50:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:50:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:51:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:51:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:51:33 #2733.1] TRACE check fd=7 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=8 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=9 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=10 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=11 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=12 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=13 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=14 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=15 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=16 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=17 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=18 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=19 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=20 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=21 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=22 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=23 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=24 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=25 +[2018-06-09 00:51:33 #2733.1] TRACE check fd=26 +[2018-06-09 00:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:52:03 #2733.1] TRACE check fd=7 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=8 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=9 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=10 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=11 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=12 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=13 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=14 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=15 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=16 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=17 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=18 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=19 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=20 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=21 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=22 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=23 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=24 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=25 +[2018-06-09 00:52:03 #2733.1] TRACE check fd=26 +[2018-06-09 00:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 00:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 00:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 00:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 00:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 00:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 00:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 00:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 00:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 00:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 01:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 01:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 01:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 01:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 01:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 01:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 01:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 01:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 01:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 02:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 02:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 02:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 02:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 02:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 02:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 02:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 02:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 02:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 03:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 03:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 03:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 03:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 03:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 03:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 03:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 03:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 03:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 04:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 04:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 04:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 04:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 04:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 04:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 04:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 04:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 04:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 05:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 05:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 05:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 05:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 05:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 05:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 05:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 05:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 05:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 16 + +http test is ok!Not Found
swoole/2.1.3
+ +[2018-06-09 06:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Wed, 06 Jun 2018 05:09:34 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 06:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:34:08 #2733.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-09 06:34:08 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 06:34:08 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 06:34:08 *2741.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: OqOa9bGZpHlWCdauNTpdgg== +Sec-We +[2018-06-09 06:34:08 *2741.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: 959drNH1cEtqtm0LkBt141rlZe4= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ + +[2018-06-09 06:34:08 *2741.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: 959drNH1cEtqtm0LkBt141rlZe4= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 06:34:10 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:10 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:10 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:10 *2742.1] TRACE [Worker] send: sendn=155|type=0|content=~ +[2018-06-09 06:34:10 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:10 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:10 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:10 *2741.0] TRACE [Worker] send: sendn=164|type=0|content=~ +[2018-06-09 06:34:10 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:10 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:10 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:10 *2742.1] TRACE [Worker] send: sendn=165|type=0|content=~ +[2018-06-09 06:34:10 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:10 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:10 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:10 *2741.0] TRACE [Worker] send: sendn=171|type=0|content=~ +[2018-06-09 06:34:10 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:10 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:10 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:10 *2742.1] TRACE [Worker] send: sendn=164|type=0|content=~ +[2018-06-09 06:34:11 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:11 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:11 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:11 *2741.0] TRACE [Worker] send: sendn=164|type=0|content=~ +[2018-06-09 06:34:11 #2733.0] TRACE header_length=6, payload_length=29 +[2018-06-09 06:34:11 #2733.0] TRACE send string package, size=31 bytes. +[2018-06-09 06:34:11 #2733.0] TRACE dispatch, type=10|len=31 + +[2018-06-09 06:34:11 *2742.1] TRACE [Worker] send: sendn=164|type=0|content=~ +[2018-06-09 06:34:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:34:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:34:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:34:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:34:20 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:34:20 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:34:20 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:34:20 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:34:50 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:34:50 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:34:50 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:34:50 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:35:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:35:48 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:35:48 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:35:48 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:35:48 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:36:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:36:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:36:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:36:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:37:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:37:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:37:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:37:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:38:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:38:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:38:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:38:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:39:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:39:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:39:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:39:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:40:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:40:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:40:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:40:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:41:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:41:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:41:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:41:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:42:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:42:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:42:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:42:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:43:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:43:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:43:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:43:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:44:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:44:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:44:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:44:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:45:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:45:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:45:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:45:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:46:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:46:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:46:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:46:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:47:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:47:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:47:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:47:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:48:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:48:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:48:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:48:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:49:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:49:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:49:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:49:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:50:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:50:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:50:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:50:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:51:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:51:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:51:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:51:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:51:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:52:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:52:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:52:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:52:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:52:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:52:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:53:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:53:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:53:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:53:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:53:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:53:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:54:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:54:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:54:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:54:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:54:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:54:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:55:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:55:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:55:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:55:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:55:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:55:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:56:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:56:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:56:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:56:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:56:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:56:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:57:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:57:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:57:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:57:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:57:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:57:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:58:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:58:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:58:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:58:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:58:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:58:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:59:04 #2733.1] TRACE check fd=7 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=8 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=9 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=10 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=11 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=12 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=13 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=14 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=15 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=16 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=17 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=18 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=19 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=20 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=21 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=22 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=23 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=24 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=25 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=26 +[2018-06-09 06:59:04 #2733.1] TRACE check fd=27 +[2018-06-09 06:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:59:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 06:59:34 #2733.1] TRACE check fd=7 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=8 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=9 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=10 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=11 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=12 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=13 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=14 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=15 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=16 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=17 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=18 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=19 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=20 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=21 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=22 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=23 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=24 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=25 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=26 +[2018-06-09 06:59:34 #2733.1] TRACE check fd=27 +[2018-06-09 06:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 06:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 06:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 06:59:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:00:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:00:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:00:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:00:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:00:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:00:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:01:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:01:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:01:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:01:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:01:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:01:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:02:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:02:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:02:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:02:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:02:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:02:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:03:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:03:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:03:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:03:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:03:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:03:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:04:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:04:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:04:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:04:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:04:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:04:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:05:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:05:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:05:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:05:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:05:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:05:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:06:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:06:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:06:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:06:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:06:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:06:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:07:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:07:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:07:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:07:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:07:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:07:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:08:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:08:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:08:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:08:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:08:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:08:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:09:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:09:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:09:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:09:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:09:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:09:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:10:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:10:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:10:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:10:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:10:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:10:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:11:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:11:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:11:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:11:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:11:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:11:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:12:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:12:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:12:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:12:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:12:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:12:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:13:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:13:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:13:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:13:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:13:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:13:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:14:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:14:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:14:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:14:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:14:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:14:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:15:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:15:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:15:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:15:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:15:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:15:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:16:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:16:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:16:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:16:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:16:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:16:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:17:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:17:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:17:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:17:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:17:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:17:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:18:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:18:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:18:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:18:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:18:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:18:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:19:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:19:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:19:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:19:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:19:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:19:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:20:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:20:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:20:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:20:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:20:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:20:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:21:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:21:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:21:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:21:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:21:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:21:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:22:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:22:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:22:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:22:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:22:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:22:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:23:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:23:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:23:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:23:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:23:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:23:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:24:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:24:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:24:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:24:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:24:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:24:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:25:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:25:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:25:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:25:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:25:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:25:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:26:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:26:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:26:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:26:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:26:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:26:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:27:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:27:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:27:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:27:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:27:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:27:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:28:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:28:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:28:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:28:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:28:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:28:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:29:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:29:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:29:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:29:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:29:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:29:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:30:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:30:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:30:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:30:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:30:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:30:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:31:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:31:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:31:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:31:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:31:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:31:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:32:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:32:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:32:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:32:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:32:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:32:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:33:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:33:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:33:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:33:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:33:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:33:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:34:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:34:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:34:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:34:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:34:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:34:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:35:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:35:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:35:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:35:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:35:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:35:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:36:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:36:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:36:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:36:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:36:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:36:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:37:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:37:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:37:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:37:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:37:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:37:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:38:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:38:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:38:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:38:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:38:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:38:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:39:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:39:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:39:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:39:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:39:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:39:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:40:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:40:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:40:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:40:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:40:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:40:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:41:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:41:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:41:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:41:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:41:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:41:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:42:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:42:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:42:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:42:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:42:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:42:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:43:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:43:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:43:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:43:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:43:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:43:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:44:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:44:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:44:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:44:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:44:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:44:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:45:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:45:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:45:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:45:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:45:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:45:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:46:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:46:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:46:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:46:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:46:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:46:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:47:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:47:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:47:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:47:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:47:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:47:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:48:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:48:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:48:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:48:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:48:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:48:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:49:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:49:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:49:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:49:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:49:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:49:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:50:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:50:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:50:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:50:34 #2733.1] TRACE check fd=7 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=8 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=9 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=10 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=11 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=12 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=13 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=14 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=15 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=16 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=17 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=18 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=19 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=20 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=21 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=22 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=23 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=24 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=25 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=26 +[2018-06-09 07:50:34 #2733.1] TRACE check fd=27 +[2018-06-09 07:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:50:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:51:04 #2733.1] TRACE check fd=7 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=8 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=9 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=10 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=11 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=12 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=13 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=14 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=15 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=16 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=17 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=18 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=19 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=20 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=21 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=22 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=23 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=24 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=25 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=26 +[2018-06-09 07:51:04 #2733.1] TRACE check fd=27 +[2018-06-09 07:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:51:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:51:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:51:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:51:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:52:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:52:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:52:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:52:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:52:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:52:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:53:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:53:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:53:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:53:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:53:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:53:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:54:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:54:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:54:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:54:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:54:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:54:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:55:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:55:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:55:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:55:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:55:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:55:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:56:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:56:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:56:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:56:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:56:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:56:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:57:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:57:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:57:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:57:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:57:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:57:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:58:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:58:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:58:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:58:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:58:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:58:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:59:05 #2733.1] TRACE check fd=7 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=8 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=9 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=10 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=11 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=12 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=13 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=14 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=15 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=16 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=17 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=18 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=19 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=20 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=21 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=22 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=23 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=24 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=25 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=26 +[2018-06-09 07:59:05 #2733.1] TRACE check fd=27 +[2018-06-09 07:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:59:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 07:59:35 #2733.1] TRACE check fd=7 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=8 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=9 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=10 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=11 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=12 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=13 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=14 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=15 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=16 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=17 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=18 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=19 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=20 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=21 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=22 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=23 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=24 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=25 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=26 +[2018-06-09 07:59:35 #2733.1] TRACE check fd=27 +[2018-06-09 07:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 07:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 07:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 07:59:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:00:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:00:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:00:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:00:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:00:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:00:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:01:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:01:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:01:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:01:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:01:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:01:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:02:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:02:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:02:19 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card4poscard

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:02:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:02:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:02:45 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 08:02:45 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=28 +[2018-06-09 08:02:45 #2733.0] TRACE send string package, size=403 bytes. +[2018-06-09 08:02:45 #2733.0] TRACE dispatch, type=10|len=403 + +[2018-06-09 08:02:45 *2742.1] TRACE httpRequest 403 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-09 08:02:45 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:03:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:03:05 #2733.1] TRACE check fd=28 +[2018-06-09 08:03:05 #2733.0] TRACE Close Event.fd=28|from=0 +[2018-06-09 08:03:05 #2733.0] TRACE set_maxfd=27|close_fd=28 + +[2018-06-09 08:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:03:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:03:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:03:35 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 08:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:04:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:04:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:04:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:04:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:05:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:05:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:05:18 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:05:18 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:05:18 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:05:18 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:05:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:05:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:06:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:06:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:06:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:06:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:07:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:07:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:07:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:07:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:08:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:08:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:08:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:08:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:09:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:09:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:09:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:09:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:10:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:10:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:10:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:10:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:11:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:11:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:11:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:11:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:12:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:12:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:12:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:12:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:13:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:13:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:13:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:13:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:14:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:14:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:14:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:14:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:15:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:15:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:15:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:15:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:16:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:16:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:16:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:16:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:17:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:17:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:17:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:17:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:18:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:18:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:18:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:18:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:19:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:19:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:19:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:19:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:20:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:20:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:20:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:20:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:21:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:21:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:21:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:21:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:22:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:22:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:22:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:22:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:23:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:23:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:23:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:23:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:24:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:24:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:24:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:24:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:25:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:25:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:25:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:25:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:26:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:26:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:26:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:26:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:27:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:27:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:27:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:27:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:28:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:28:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:28:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:28:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:29:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:29:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:29:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:29:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:30:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:30:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:30:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:30:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:31:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:31:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:31:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:31:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:32:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:32:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:32:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:32:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:33:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:33:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:33:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:33:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:34:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:34:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:34:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:34:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:35:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:35:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:35:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:35:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:36:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:36:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:36:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:36:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:37:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:37:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:37:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:37:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:38:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:38:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:38:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:38:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:39:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:39:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:39:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:39:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:40:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:40:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:40:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:40:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:41:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:41:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:41:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:41:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:42:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:42:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:42:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:42:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:43:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:43:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:43:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:43:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:44:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:44:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:44:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:44:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:45:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:45:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:45:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:45:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:46:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:46:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:46:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:46:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:47:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:47:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:47:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:47:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:48:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:48:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:48:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:48:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:49:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:49:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:49:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:49:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:50:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:50:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:50:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:50:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:51:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:51:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:51:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:51:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:52:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:52:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:52:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:52:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:53:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:53:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:53:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:53:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:54:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:54:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:54:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:54:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:55:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:55:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:55:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:55:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:56:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:56:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:56:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:56:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:57:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:57:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:57:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:57:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:58:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:58:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:58:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:58:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:59:05 #2733.1] TRACE check fd=7 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=8 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=9 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=10 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=11 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=12 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=13 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=14 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=15 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=16 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=17 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=18 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=19 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=20 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=21 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=22 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=23 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=24 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=25 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=26 +[2018-06-09 08:59:05 #2733.1] TRACE check fd=27 +[2018-06-09 08:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 08:59:35 #2733.1] TRACE check fd=7 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=8 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=9 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=10 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=11 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=12 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=13 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=14 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=15 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=16 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=17 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=18 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=19 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=20 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=21 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=22 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=23 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=24 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=25 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=26 +[2018-06-09 08:59:35 #2733.1] TRACE check fd=27 +[2018-06-09 08:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 08:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 08:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 08:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 08:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:00:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:00:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:00:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:00:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:01:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:01:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:01:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:01:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:02:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:02:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:02:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:02:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:03:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:03:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:03:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:03:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:04:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:04:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:04:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:04:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:05:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:05:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:05:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:05:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:06:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:06:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:06:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:06:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:07:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:07:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:07:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:07:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:08:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:08:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:08:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:08:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:09:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:09:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:09:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:09:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:10:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:10:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:10:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:10:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:11:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:11:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:11:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:11:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:12:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:12:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:12:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:12:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:13:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:13:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:13:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:13:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:14:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:14:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:14:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:14:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:15:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:15:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:15:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:15:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:16:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:16:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:16:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:16:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:17:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:17:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:17:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:17:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:18:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:18:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:18:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:18:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:19:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:19:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:19:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:19:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:20:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:20:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:20:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:20:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:21:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:21:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:21:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:21:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:22:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:22:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:22:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:22:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:23:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:23:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:23:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:23:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:24:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:24:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:24:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:24:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:25:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:25:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:25:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:25:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:26:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:26:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:26:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:26:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:26:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:26:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:27:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:27:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:27:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:27:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:28:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:28:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:28:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:28:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:28:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:28:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:29:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:29:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:29:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:29:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:29:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:29:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:30:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:30:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:30:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:30:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:30:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:30:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:31:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:31:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:31:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:31:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:31:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:31:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:32:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:32:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:32:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:32:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:32:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:32:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:33:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:33:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:33:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:33:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:33:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:33:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:34:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:34:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:34:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:34:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:34:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:34:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:35:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:35:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:35:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:35:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:35:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:35:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:36:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:36:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:36:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:36:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:36:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:36:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:36:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:36:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:36:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:36:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:36:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:36:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:37:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:37:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:37:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:37:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:37:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:37:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:37:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:37:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:37:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:37:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:37:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:37:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:37:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:37:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:37:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:37:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:37:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:37:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:37:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:37:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:38:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:38:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:38:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:38:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:38:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:38:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:38:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:38:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:38:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:38:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:38:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:38:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:38:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:38:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:38:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:38:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:38:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:38:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:38:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:38:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:39:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:39:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:39:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:39:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:39:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:39:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:39:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:39:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:39:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:39:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:39:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:39:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:39:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:39:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:39:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:39:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:39:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:39:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:39:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:39:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:40:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:40:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:40:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:40:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:40:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:40:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:40:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:40:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:40:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:40:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:40:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:40:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:40:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:40:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:40:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:40:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:40:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:40:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:40:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:40:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:41:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:41:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:41:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:41:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:41:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:41:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:41:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:41:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:41:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:41:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:41:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:41:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:41:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:41:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:41:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:41:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:41:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:41:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:41:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:41:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:42:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:42:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:42:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:42:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:42:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:42:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:42:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:42:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:42:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:42:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:42:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:42:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:42:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:42:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:42:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:42:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:42:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:42:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:42:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:42:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:43:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:43:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:43:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:43:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:43:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:43:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:43:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:43:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:43:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:43:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:43:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:43:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:43:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:43:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:43:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:43:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:43:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:43:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:43:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:43:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:44:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:44:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:44:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:44:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:44:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:44:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:44:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:44:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:44:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:44:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:44:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:44:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:44:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:44:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:44:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:44:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:44:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:44:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:44:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:44:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:45:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:45:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:45:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:45:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:45:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:45:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:45:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:45:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:45:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:45:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:45:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:45:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:45:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:45:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:45:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:45:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:45:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:45:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:45:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:45:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:46:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:46:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:46:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:46:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:46:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:46:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:46:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:46:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:46:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:46:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:46:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:46:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:46:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:46:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:46:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:46:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:46:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:46:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:46:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:46:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:47:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:47:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:47:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:47:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:47:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:47:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:47:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:47:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:47:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:47:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:47:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:47:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:47:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:47:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:47:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:47:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:47:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:47:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:47:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:47:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:48:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:48:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:48:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:48:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:48:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:48:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:48:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:48:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:48:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:48:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:48:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:48:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:48:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:48:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:48:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:48:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:48:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:48:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:48:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:48:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:49:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:49:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:49:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:49:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:49:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:49:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:49:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:49:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:49:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:49:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:49:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:49:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:49:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:49:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:49:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:49:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:49:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:49:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:49:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:49:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:50:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:50:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:50:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:50:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:50:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:50:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:50:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:50:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:50:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:50:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:50:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:50:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:50:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:50:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:50:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:50:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:50:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:50:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:50:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:50:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:51:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:51:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:51:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:51:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:51:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:51:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:51:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:51:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:51:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:51:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:51:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:51:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:51:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:51:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:51:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:51:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:51:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:51:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:51:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:51:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:52:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:52:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:52:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:52:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:52:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:52:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:52:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:52:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:52:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:52:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:52:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:52:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:52:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:52:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:52:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:52:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:52:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:52:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:52:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:52:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:53:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:53:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:53:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:53:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:53:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:53:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:53:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:53:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:53:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:53:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:53:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:53:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:53:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:53:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:53:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:53:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:53:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:53:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:53:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:53:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:54:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:54:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:54:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:54:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:54:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:54:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:54:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:54:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:54:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:54:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:54:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:54:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:54:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:54:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:54:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:54:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:54:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:54:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:54:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:54:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:55:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:55:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:55:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:55:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:55:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:55:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:55:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:55:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:55:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:55:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:55:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:55:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:55:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:55:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:55:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:55:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:55:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:55:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:55:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:55:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:56:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:56:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:56:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:56:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:56:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:56:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:56:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:56:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:56:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:56:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:56:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:56:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:56:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:56:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:56:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:56:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:56:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:56:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:56:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:56:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:57:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:57:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:57:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:57:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:57:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:57:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:57:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:57:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:57:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:57:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:57:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:57:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:57:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:57:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:57:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:57:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:57:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:57:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:57:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:57:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:58:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:58:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:58:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:58:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:58:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:58:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:58:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:58:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:58:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:58:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:58:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:58:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:58:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:58:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:58:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:58:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:58:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:58:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:58:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:58:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:59:05 #2733.1] TRACE check fd=7 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=8 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=9 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=10 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=11 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=12 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=13 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=14 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=15 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=16 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=17 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=18 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=19 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=20 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=21 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=22 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=23 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=24 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=25 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=26 +[2018-06-09 09:59:05 #2733.1] TRACE check fd=27 +[2018-06-09 09:59:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:59:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:59:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:59:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:59:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:59:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:59:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:59:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 09:59:35 #2733.1] TRACE check fd=7 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=8 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=9 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=10 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=11 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=12 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=13 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=14 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=15 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=16 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=17 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=18 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=19 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=20 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=21 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=22 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=23 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=24 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=25 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=26 +[2018-06-09 09:59:35 #2733.1] TRACE check fd=27 +[2018-06-09 09:59:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:59:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:59:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:59:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 09:59:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 09:59:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 09:59:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 09:59:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:00:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:00:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:00:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:00:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:00:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:00:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:00:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:00:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:00:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:00:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:00:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:00:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:00:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:00:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:00:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:00:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:00:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:00:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:00:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:00:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:01:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:01:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:01:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:01:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:01:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:01:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:01:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:01:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:01:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:01:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:01:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:01:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:01:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:01:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:01:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:01:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:01:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:01:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:01:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:01:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:02:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:02:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:02:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:02:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:02:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:02:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:02:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:02:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:02:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:02:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:02:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:02:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:02:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:02:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:02:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:02:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:02:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:02:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:02:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:02:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:03:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:03:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:03:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:03:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:03:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:03:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:03:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:03:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:03:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:03:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:03:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:03:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:03:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:03:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:03:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:03:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:03:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:03:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:03:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:03:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:04:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:04:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:04:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:04:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:04:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:04:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:04:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:04:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:04:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:04:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:04:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:04:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:04:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:04:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:04:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:04:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:04:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:04:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:04:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:04:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:05:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:05:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:05:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:05:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:05:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:05:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:05:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:05:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:05:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:05:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:05:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:05:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:05:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:05:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:05:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:05:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:05:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:05:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:05:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:05:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:06:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:06:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:06:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:06:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:06:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:06:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:06:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:06:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:06:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:06:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:06:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:06:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:06:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:06:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:06:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:06:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:06:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:06:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:06:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:06:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:07:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:07:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:07:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:07:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:07:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:07:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:07:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:07:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:07:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:07:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:07:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:07:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:07:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:07:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:07:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:07:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:07:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:07:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:07:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:07:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:08:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:08:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:08:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:08:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:08:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:08:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:08:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:08:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:08:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:08:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:08:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:08:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:08:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:08:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:08:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:08:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:08:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:08:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:08:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:08:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:09:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:09:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:09:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:09:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:09:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:09:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:09:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:09:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:09:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:09:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:09:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:09:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:09:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:09:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:09:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:09:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:09:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:09:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:09:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:09:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:10:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:10:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:10:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:10:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:10:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:10:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:10:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:10:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:10:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:10:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:10:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:10:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:10:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:10:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:10:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:10:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:10:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:10:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:10:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:10:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:11:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:11:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:11:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:11:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:11:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:11:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:11:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:11:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:11:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:11:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:11:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:11:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:11:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:11:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:11:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:11:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:11:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:11:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:11:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:11:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:12:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:12:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:12:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:12:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:12:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:12:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:12:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:12:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:12:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:12:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:12:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:12:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:12:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:12:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:12:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:12:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:12:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:12:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:12:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:12:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:13:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:13:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:13:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:13:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:13:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:13:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:13:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:13:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:13:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:13:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:13:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:13:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:13:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:13:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:13:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:13:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:13:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:13:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:13:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:13:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:14:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:14:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:14:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:14:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:14:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:14:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:14:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:14:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:14:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:14:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:14:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:14:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:14:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:14:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:14:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:14:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:14:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:14:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:14:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:14:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:15:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:15:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:15:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:15:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:15:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:15:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:15:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:15:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:15:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:15:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:15:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:15:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:15:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:15:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:15:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:15:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:15:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:15:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:15:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:15:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:16:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:16:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:16:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:16:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:16:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:16:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:16:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:16:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:16:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:16:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:16:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:16:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:16:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:16:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:16:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:16:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:16:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:16:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:16:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:16:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:17:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:17:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:17:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:17:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:17:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:17:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:17:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:17:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:17:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:17:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:17:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:17:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:17:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:17:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:17:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:17:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:17:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:17:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:17:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:17:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:18:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:18:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:18:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:18:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:18:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:18:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:18:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:18:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:18:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:18:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:18:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:18:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:18:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:18:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:18:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:18:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:18:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:18:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:18:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:18:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:19:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:19:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:19:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:19:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:19:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:19:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:19:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:19:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:19:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:19:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:19:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:19:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:19:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:19:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:19:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:19:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:19:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:19:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:19:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:19:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:20:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:20:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:20:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:20:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:20:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:20:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:20:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:20:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:20:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:20:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:20:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:20:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:20:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:20:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:20:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:20:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:20:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:20:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:20:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:20:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:21:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:21:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:21:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:21:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:21:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:21:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:21:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:21:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:21:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:21:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:21:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:21:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:21:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:21:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:21:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:21:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:21:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:21:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:21:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:21:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:22:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:22:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:22:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:22:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:22:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:22:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:22:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:22:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:22:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:22:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:22:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:22:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:22:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:22:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:22:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:22:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+s_card3poscard 37show#方块_9,黑桃_7,梅花_3,梅花_7bean +[2018-06-09 10:22:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:22:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:22:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:22:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 00:02:45 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:23:01 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:23:01 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=28 +[2018-06-09 10:23:01 #2733.0] TRACE send string package, size=457 bytes. +[2018-06-09 10:23:01 #2733.0] TRACE dispatch, type=10|len=457 + +[2018-06-09 10:23:01 *2741.0] TRACE httpRequest 457 bytes: +--------------------------------------- +GET /HttpTest?aaa=bbb&ccc=ddd HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Cache-Control: max-age=0 +Upgrade-Insecure-Requests: 1 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW; +[2018-06-09 10:23:01 *2741.0] TRACE [Worker] send: sendn=181|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:23:01 #2733.0] TRACE send string package, size=446 bytes. +[2018-06-09 10:23:01 #2733.0] TRACE dispatch, type=10|len=446 + +[2018-06-09 10:23:01 *2742.1] TRACE httpRequest 446 bytes: +--------------------------------------- +GET /favicon.ico HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: keep-alive +Pragma: no-cache +Cache-Control: no-cache +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept: image/webp,image/apng,image/*,*/*;q=0.8 +Referer: http://192.168.7.197:9503/HttpTest?aaa=bbb&ccc=ddd +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 + + + +[2018-06-09 10:23:01 *2742.1] TRACE [Worker] send: sendn=239|type=0|content=HTTP/1.1 200 OK +Server: swoole-http-server +Content-Type: text/html +Connection: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:23:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:23:05 #2733.1] TRACE check fd=28 +[2018-06-09 10:23:10 #2733.0] TRACE Close Event.fd=28|from=0 +[2018-06-09 10:23:10 #2733.0] TRACE set_maxfd=27|close_fd=28 + +[2018-06-09 10:23:10 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:23:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:23:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:23:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:23:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:23:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:23:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:23:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:23:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:23:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:23:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:23:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:23:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:23:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:23:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:23:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:23:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:23:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:23:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:24:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:24:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:24:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:24:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:24:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:24:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:24:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:24:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:24:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:24:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:24:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:24:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:24:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:24:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:24:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:24:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:24:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:24:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:24:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:24:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:25:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:25:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:25:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:25:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:25:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:25:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:25:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:25:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:25:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:25:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:25:34 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:25:34 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:25:34 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:25:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:25:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:25:38 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:25:38 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:25:38 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:25:38 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:25:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:25:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:25:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:25:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:25:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:25:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:25:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:25:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:26:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:26:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:26:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:26:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:26:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:26:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:26:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:26:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:26:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:26:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:26:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:26:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:26:45 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:26:45 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:26:45 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:26:45 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:26:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:26:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:26:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:26:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:26:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:26:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:26:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:26:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:26:59 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:26:59 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:26:59 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:26:59 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:27:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:27:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:27:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:27:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:27:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:27:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:27:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:27:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:27:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:27:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:27:28 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:27:28 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:27:28 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:27:28 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:27:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:27:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:27:36 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:27:36 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:27:36 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:27:36 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:27:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:27:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:27:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:27:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 16 + +http test is ok!websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:27:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:27:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:27:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:27:51 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+tion: keep-alive +Date: Sat, 09 Jun 2018 02:23:00 GMT +Content-Length: 74 + +

404 Not Found


swoole/2.1.3
+ +[2018-06-09 10:28:03 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:28:03 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:28:03 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:28:03 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:28:03 *2741.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: J85ZcMV2dIDDww5ZfSnhOg== +Sec-We +[2018-06-09 10:28:03 *2741.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: vvIUxOWcrzYzoRAgh+Bk5/YXCu4= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ + +[2018-06-09 10:28:03 *2741.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: vvIUxOWcrzYzoRAgh+Bk5/YXCu4= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:03 #2733.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:28:03 #2733.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:28:03 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:28:03 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:28:03 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:28:03 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:28:03 *2742.1] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: 6ubSQINTq1YK7MXFJ+03Ew== +Sec-We +[2018-06-09 10:28:03 *2742.1] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: hQ9L9BKGXJPO4rFEIdKwypTwtpM= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ + +[2018-06-09 10:28:03 *2742.1] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: hQ9L9BKGXJPO4rFEIdKwypTwtpM= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:04 #2733.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:28:04 #2733.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:28:04 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:28:04 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:28:04 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:28:04 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:28:04 *2741.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: /I6Qcvfg8+SyZn8M5HMg4Q== +Sec-We +[2018-06-09 10:28:04 *2741.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ + +[2018-06-09 10:28:04 *2741.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:04 #2733.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:28:04 #2733.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:28:04 #2733.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:28:04 #2733.1] TRACE [Master] Accept new connection. maxfd=27|reactor_id=1|conn=26 +[2018-06-09 10:28:04 #2733.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:28:04 #2733.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:28:04 *2742.1] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: 6w/sAUbwJr22+OA80NGq0g== +Sec-We +[2018-06-09 10:28:04 *2742.1] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: MkACnfbSGkJDM1f3EG/RxO2QyxE= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ + +[2018-06-09 10:28:04 *2742.1] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: MkACnfbSGkJDM1f3EG/RxO2QyxE= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:05 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:28:05 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:28:05 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:28:05 *2741.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:28:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:28:08 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:28:08 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:28:08 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:28:08 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:12 #2733.0] TRACE header_length=6, payload_length=19 +[2018-06-09 10:28:12 #2733.0] TRACE send string package, size=21 bytes. +[2018-06-09 10:28:12 #2733.0] TRACE dispatch, type=10|len=21 + +[2018-06-09 10:28:12 *2741.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:28:14 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:28:14 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:28:14 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:28:14 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:28:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:28:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:28:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:21 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:28:21 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:28:21 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:28:21 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:28:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:28:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:28:21 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:24 #2733.0] TRACE header_length=6, payload_length=20 +[2018-06-09 10:28:24 #2733.0] TRACE send string package, size=22 bytes. +[2018-06-09 10:28:24 #2733.0] TRACE dispatch, type=10|len=22 + +[2018-06-09 10:28:24 *2742.1] TRACE [Worker] send: sendn=94|type=0|content=P +[2018-06-09 10:28:31 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:28:31 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:28:31 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:28:31 *2741.0] TRACE [Worker] send: sendn=47|type=0|content=! +[2018-06-09 10:28:33 #2733.0] TRACE header_length=6, payload_length=33 +[2018-06-09 10:28:33 #2733.0] TRACE send string package, size=35 bytes. +[2018-06-09 10:28:33 #2733.0] TRACE dispatch, type=10|len=35 + +[2018-06-09 10:28:33 *2742.1] TRACE [Worker] send: sendn=165|type=0|content=~ +[2018-06-09 10:28:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:28:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:28:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:28:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:28:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:28:36 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:28:36 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:28:36 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:28:36 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:28:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:28:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:28:49 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:50 #2733.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:28:50 #2733.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:28:50 #2733.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:28:50 *2742.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:28:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:28:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:28:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:28:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:28:54 #2733.0] TRACE header_length=6, payload_length=19 +[2018-06-09 10:28:54 #2733.0] TRACE send string package, size=21 bytes. +[2018-06-09 10:28:54 #2733.0] TRACE dispatch, type=10|len=21 + +[2018-06-09 10:28:54 *2742.1] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:28:57 #2733.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:28:57 #2733.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:28:57 #2733.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:28:57 *2741.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:29:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:29:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:29:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:29:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:29:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:29:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:29:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:29:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:29:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:29:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:29:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:29:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:29:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:30:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:30:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:30:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:30:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:30:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:30:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:30:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:30:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:30:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:30:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:30:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:30:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:30:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:31:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:31:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:31:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:31:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:31:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:31:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:31:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:31:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:31:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:31:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:31:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:31:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:31:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:32:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:32:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:32:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:32:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:32:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:32:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:32:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:32:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:32:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:32:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:32:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:32:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:32:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:33:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:33:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:33:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:33:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:33:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:33:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:33:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:33:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:33:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:33:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:33:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:33:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:33:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:34:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:34:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:34:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:34:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:34:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:34:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:34:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:34:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:34:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:34:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:34:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:34:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:34:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:35:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:35:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:35:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:35:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:35:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:35:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:35:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:35:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:35:49 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:49 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:49 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:49 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:35:51 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:35:51 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:35:51 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:35:51 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:36:04 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:36:04 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:36:04 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:36:04 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:36:05 #2733.1] TRACE check fd=7 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=8 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=9 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=10 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=11 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=12 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=13 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=14 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=15 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=16 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=17 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=18 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=19 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=20 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=21 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=22 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=23 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=24 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=25 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=26 +[2018-06-09 10:36:05 #2733.1] TRACE check fd=27 +[2018-06-09 10:36:19 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:36:19 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:36:19 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:36:19 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:36:21 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:36:21 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:36:21 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:36:21 *2742.1] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightrd7poscard'9;show#红桃_7,方块_7,梅花_9,梅花_Jbean +[2018-06-09 10:36:34 #2733.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:36:34 #2733.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:36:34 #2733.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:36:34 *2741.0] TRACE [Worker] send: sendn=88|type=0|content=J

404 Not Found


swoole/2.1.3
+ightbSocket-Accept: F4fZpVPzvSXalUCHtuNo8If9hNA= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + +ter>
swoole/2.1.3
+ +[2018-06-09 10:36:35 #2733.1] TRACE check fd=7 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=8 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=9 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=10 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=11 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=12 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=13 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=14 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=15 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=16 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=17 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=18 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=19 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=20 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=21 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=22 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=23 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=24 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=25 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=26 +[2018-06-09 10:36:35 #2733.1] TRACE check fd=27 +[2018-06-09 10:36:50 @2756.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-09 10:36:50 #2756.1] TRACE check fd=7 +[2018-06-09 10:36:50 #2756.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-09 10:36:50 #2756.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:36:50 #2756.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:36:50 *2764.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: sp3mi9bh0dtCMnQgi6pRDw== +Sec-We +[2018-06-09 10:36:50 *2764.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: Z/7pViBUs16EgLr3D826qcUQO7Q= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-09 10:36:50 *2764.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: Z/7pViBUs16EgLr3D826qcUQO7Q= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-09 10:36:51 #2756.1] WARNING swServer_master_onTimer (ERROR 9007): No idle worker is available. +[2018-06-09 10:36:54 #2756.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:36:54 #2756.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:36:54 #2756.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:36:54 #2756.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-09 10:36:54 #2756.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-09 10:36:54 #2756.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:36:54 #2756.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:36:54 *2765.1] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: +lmvnWNT7Xlt9r6mFAg4Rg== +Sec-We +[2018-06-09 10:36:54 *2765.1] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: p5fANWt2WzT5TFyxYVlMtkxwHb0= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-09 10:36:54 *2765.1] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: p5fANWt2WzT5TFyxYVlMtkxwHb0= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-09 10:36:54 #2756.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:36:54 #2756.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:36:54 #2756.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:37:07 #2756.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:37:07 #2756.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:37:07 #2756.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:37:07 #2756.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-09 10:37:07 #2756.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-09 10:37:07 #2756.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:37:07 #2756.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:37:07 *2765.1] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: kKXfr0EvI1Iy10P1ud3XBA== +Sec-We +[2018-06-09 10:37:07 *2765.1] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: xHiZy+oJLIjHb8AG5zbSvDl/rgM= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-09 10:37:07 *2765.1] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: xHiZy+oJLIjHb8AG5zbSvDl/rgM= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-09 10:37:08 #2756.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:37:08 #2756.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:37:08 #2756.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:37:13 #2756.0] TRACE header_length=6, payload_length=2 +[2018-06-09 10:37:13 #2756.0] TRACE Close Event.FD=26|From=0 +[2018-06-09 10:37:13 #2756.0] TRACE Close Event.fd=26|from=0 +[2018-06-09 10:37:13 #2756.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-09 10:37:13 #2756.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-09 10:37:13 #2756.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:37:13 #2756.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:37:13 *2765.1] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: n3XdnS8ixKgfnzeQWUGR6Q== +Sec-We +[2018-06-09 10:37:13 *2765.1] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: JxshTzR4maDGqcgyNhg+sbP5jIc= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-09 10:37:13 *2765.1] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: JxshTzR4maDGqcgyNhg+sbP5jIc= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-09 10:37:13 #2756.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:37:13 #2756.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:37:13 #2756.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:37:20 #2756.1] TRACE check fd=7 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=8 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=9 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=10 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=11 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=12 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=13 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=14 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=15 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=16 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=17 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=18 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=19 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=20 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=21 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=22 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=23 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=24 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=25 +[2018-06-09 10:37:20 #2756.1] TRACE check fd=26 +[2018-06-09 10:37:43 #2756.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:37:43 #2756.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:37:43 #2756.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:37:49 @2774.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-09 10:37:49 #2774.1] TRACE check fd=7 +[2018-06-09 10:37:51 #2774.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-09 10:37:51 #2774.0] TRACE send string package, size=514 bytes. +[2018-06-09 10:37:51 #2774.0] TRACE dispatch, type=10|len=514 + +[2018-06-09 10:37:51 *2782.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: W41t/z6nFAr2dXgozZUF4g== +Sec-We +[2018-06-09 10:37:51 *2782.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: fiFfTDSZAXWp64RvMPeNtX67rlw= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-09 10:37:51 *2782.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: fiFfTDSZAXWp64RvMPeNtX67rlw= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-09 10:37:52 #2774.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:37:52 #2774.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:37:52 #2774.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:37:52 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:00 #2774.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:38:00 #2774.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:38:00 #2774.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:38:00 *2782.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:06 #2774.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:38:06 #2774.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:38:06 #2774.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:38:06 *2783.1] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:38:09 #2774.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:38:09 #2774.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:38:09 #2774.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:38:09 *2782.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:12 #2774.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:38:12 #2774.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:38:12 #2774.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:38:12 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:17 #2774.0] TRACE header_length=6, payload_length=22 +[2018-06-09 10:38:17 #2774.0] TRACE send string package, size=24 bytes. +[2018-06-09 10:38:17 #2774.0] TRACE dispatch, type=10|len=24 + +[2018-06-09 10:38:17 *2782.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:38:19 #2774.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:38:19 #2774.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:38:19 #2774.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:38:19 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:19 #2774.1] TRACE check fd=7 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=8 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=9 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=10 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=11 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=12 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=13 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=14 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=15 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=16 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=17 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=18 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=19 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=20 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=21 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=22 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=23 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=24 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=25 +[2018-06-09 10:38:19 #2774.1] TRACE check fd=26 +[2018-06-09 10:38:21 #2774.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:38:21 #2774.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:38:21 #2774.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:38:33 #2774.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:38:33 #2774.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:38:33 #2774.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:38:33 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:36 #2774.0] TRACE header_length=6, payload_length=20 +[2018-06-09 10:38:36 #2774.0] TRACE send string package, size=22 bytes. +[2018-06-09 10:38:36 #2774.0] TRACE dispatch, type=10|len=22 + +[2018-06-09 10:38:36 *2782.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:38:39 #2774.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:38:39 #2774.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:38:39 #2774.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:38:39 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:38:49 #2774.1] TRACE check fd=7 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=8 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=9 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=10 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=11 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=12 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=13 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=14 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=15 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=16 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=17 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=18 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=19 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=20 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=21 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=22 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=23 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=24 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=25 +[2018-06-09 10:38:49 #2774.1] TRACE check fd=26 +[2018-06-09 10:38:51 #2774.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:38:51 #2774.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:38:51 #2774.0] TRACE dispatch, type=10|len=23 + +[2018-06-09 10:39:12 #2774.0] TRACE header_length=6, payload_length=12 +[2018-06-09 10:39:12 #2774.0] TRACE send string package, size=14 bytes. +[2018-06-09 10:39:12 #2774.0] TRACE dispatch, type=10|len=14 + +[2018-06-09 10:39:12 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:39:18 #2774.0] TRACE header_length=6, payload_length=19 +[2018-06-09 10:39:18 #2774.0] TRACE send string package, size=21 bytes. +[2018-06-09 10:39:18 #2774.0] TRACE dispatch, type=10|len=21 + +[2018-06-09 10:39:18 *2782.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-09 10:39:19 #2774.1] TRACE check fd=7 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=8 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=9 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=10 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=11 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=12 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=13 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=14 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=15 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=16 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=17 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=18 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=19 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=20 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=21 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=22 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=23 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=24 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=25 +[2018-06-09 10:39:19 #2774.1] TRACE check fd=26 +[2018-06-09 10:39:20 #2774.0] TRACE header_length=6, payload_length=7 +[2018-06-09 10:39:20 #2774.0] TRACE send string package, size=9 bytes. +[2018-06-09 10:39:20 #2774.0] TRACE dispatch, type=10|len=9 + +[2018-06-09 10:39:20 *2783.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-09 10:39:21 #2774.0] TRACE header_length=6, payload_length=21 +[2018-06-09 10:39:21 #2774.0] TRACE send string package, size=23 bytes. +[2018-06-09 10:39:21 #2774.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:17:33 @2797.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:17:33 #2797.1] TRACE check fd=7 +[2018-06-11 16:17:49 #2797.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:17:49 #2797.0] TRACE send string package, size=514 bytes. +[2018-06-11 16:17:49 #2797.0] TRACE dispatch, type=10|len=514 + +[2018-06-11 16:17:49 *2805.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: xAFBlAREIjbUE+6q2ZCA+w== +Sec-We +[2018-06-11 16:17:49 *2805.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: Nv8jyJ98T+Lw+E/wHDziEs7KSNI= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-11 16:17:49 *2805.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: Nv8jyJ98T+Lw+E/wHDziEs7KSNI= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-11 16:17:49 #2797.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:17:49 #2797.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:17:49 #2797.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:17:49 *2806.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:18:03 #2797.1] TRACE check fd=7 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=8 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=9 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=10 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=11 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=12 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=13 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=14 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=15 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=16 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=17 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=18 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=19 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=20 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=21 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=22 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=23 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=24 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=25 +[2018-06-11 16:18:03 #2797.1] TRACE check fd=26 +[2018-06-11 16:18:08 #2797.0] TRACE header_length=6, payload_length=12 +[2018-06-11 16:18:08 #2797.0] TRACE send string package, size=14 bytes. +[2018-06-11 16:18:08 #2797.0] TRACE dispatch, type=10|len=14 + +[2018-06-11 16:18:08 *2805.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:18:19 #2797.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:18:19 #2797.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:18:19 #2797.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:18:25 #2797.0] TRACE header_length=6, payload_length=18 +[2018-06-11 16:18:25 #2797.0] TRACE send string package, size=20 bytes. +[2018-06-11 16:18:25 #2797.0] TRACE dispatch, type=10|len=20 + +[2018-06-11 16:18:25 *2805.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-11 16:18:27 #2797.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:18:27 #2797.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:18:27 #2797.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:18:27 *2806.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:18:33 #2797.1] TRACE check fd=7 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=8 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=9 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=10 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=11 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=12 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=13 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=14 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=15 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=16 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=17 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=18 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=19 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=20 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=21 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=22 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=23 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=24 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=25 +[2018-06-11 16:18:33 #2797.1] TRACE check fd=26 +[2018-06-11 16:29:19 @2825.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:29:19 #2825.1] TRACE check fd=7 +[2018-06-11 16:29:23 #2825.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:29:23 #2825.0] TRACE send string package, size=514 bytes. +[2018-06-11 16:29:23 #2825.0] TRACE dispatch, type=10|len=514 + +[2018-06-11 16:29:23 *2833.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: fLlnAW+wZumQ1FyAYTJ+Jw== +Sec-We +[2018-06-11 16:29:23 *2833.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: 94d5/2LOg/k3lIt3si5+Rq7W+Hw= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-11 16:29:23 *2833.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: 94d5/2LOg/k3lIt3si5+Rq7W+Hw= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-11 16:29:23 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:29:23 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:29:23 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:29:23 *2834.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:25 #2825.0] TRACE header_length=6, payload_length=12 +[2018-06-11 16:29:25 #2825.0] TRACE send string package, size=14 bytes. +[2018-06-11 16:29:25 #2825.0] TRACE dispatch, type=10|len=14 + +[2018-06-11 16:29:25 *2833.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:28 #2825.0] TRACE header_length=6, payload_length=19 +[2018-06-11 16:29:28 #2825.0] TRACE send string package, size=21 bytes. +[2018-06-11 16:29:28 #2825.0] TRACE dispatch, type=10|len=21 + +[2018-06-11 16:29:28 *2834.1] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-11 16:29:30 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:29:30 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:29:30 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:29:30 *2833.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:32 #2825.0] TRACE header_length=6, payload_length=12 +[2018-06-11 16:29:32 #2825.0] TRACE send string package, size=14 bytes. +[2018-06-11 16:29:32 #2825.0] TRACE dispatch, type=10|len=14 + +[2018-06-11 16:29:32 *2834.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:37 #2825.0] TRACE header_length=6, payload_length=19 +[2018-06-11 16:29:37 #2825.0] TRACE send string package, size=21 bytes. +[2018-06-11 16:29:37 #2825.0] TRACE dispatch, type=10|len=21 + +[2018-06-11 16:29:37 *2833.0] TRACE [Worker] send: sendn=102|type=0|content=X +[2018-06-11 16:29:41 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:29:41 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:29:41 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:29:41 *2834.1] TRACE [Worker] send: sendn=47|type=0|content=! +[2018-06-11 16:29:43 #2825.0] TRACE header_length=6, payload_length=33 +[2018-06-11 16:29:43 #2825.0] TRACE send string package, size=35 bytes. +[2018-06-11 16:29:43 #2825.0] TRACE dispatch, type=10|len=35 + +[2018-06-11 16:29:43 *2833.0] TRACE [Worker] send: sendn=155|type=0|content=~ +[2018-06-11 16:29:48 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:29:48 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:29:48 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:29:48 *2834.1] TRACE [Worker] send: sendn=47|type=0|content=! +[2018-06-11 16:29:49 #2825.0] TRACE header_length=6, payload_length=34 +[2018-06-11 16:29:49 #2825.0] TRACE send string package, size=36 bytes. +[2018-06-11 16:29:49 #2825.0] TRACE dispatch, type=10|len=36 + +[2018-06-11 16:29:49 *2833.0] TRACE [Worker] send: sendn=164|type=0|content=~ +[2018-06-11 16:29:49 #2825.1] TRACE check fd=7 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=8 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=9 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=10 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=11 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=12 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=13 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=14 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=15 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=16 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=17 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=18 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=19 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=20 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=21 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=22 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=23 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=24 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=25 +[2018-06-11 16:29:49 #2825.1] TRACE check fd=26 +[2018-06-11 16:29:52 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:29:52 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:29:52 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:29:52 *2834.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:53 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:29:53 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:29:53 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:29:54 #2825.0] TRACE header_length=6, payload_length=12 +[2018-06-11 16:29:54 #2825.0] TRACE send string package, size=14 bytes. +[2018-06-11 16:29:54 #2825.0] TRACE dispatch, type=10|len=14 + +[2018-06-11 16:29:54 *2834.1] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:29:57 #2825.0] TRACE header_length=6, payload_length=18 +[2018-06-11 16:29:57 #2825.0] TRACE send string package, size=20 bytes. +[2018-06-11 16:29:57 #2825.0] TRACE dispatch, type=10|len=20 + +[2018-06-11 16:29:57 *2833.0] TRACE [Worker] send: sendn=93|type=0|content=O +[2018-06-11 16:30:01 #2825.0] TRACE header_length=6, payload_length=13 +[2018-06-11 16:30:01 #2825.0] TRACE send string package, size=15 bytes. +[2018-06-11 16:30:01 #2825.0] TRACE dispatch, type=10|len=15 + +[2018-06-11 16:30:01 *2834.1] TRACE [Worker] send: sendn=46|type=0|content= +[2018-06-11 16:30:01 #2825.0] TRACE header_length=6, payload_length=7 +[2018-06-11 16:30:01 #2825.0] TRACE send string package, size=9 bytes. +[2018-06-11 16:30:01 #2825.0] TRACE dispatch, type=10|len=9 + +[2018-06-11 16:30:01 *2833.0] TRACE [Worker] send: sendn=45|type=0|content= +[2018-06-11 16:30:19 #2825.1] TRACE check fd=7 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=8 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=9 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=10 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=11 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=12 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=13 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=14 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=15 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=16 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=17 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=18 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=19 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=20 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=21 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=22 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=23 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=24 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=25 +[2018-06-11 16:30:19 #2825.1] TRACE check fd=26 +[2018-06-11 16:30:23 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:30:23 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:30:23 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:30:49 #2825.1] TRACE check fd=7 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=8 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=9 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=10 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=11 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=12 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=13 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=14 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=15 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=16 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=17 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=18 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=19 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=20 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=21 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=22 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=23 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=24 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=25 +[2018-06-11 16:30:49 #2825.1] TRACE check fd=26 +[2018-06-11 16:30:53 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:30:53 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:30:53 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:31:19 #2825.1] TRACE check fd=7 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=8 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=9 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=10 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=11 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=12 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=13 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=14 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=15 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=16 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=17 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=18 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=19 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=20 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=21 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=22 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=23 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=24 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=25 +[2018-06-11 16:31:19 #2825.1] TRACE check fd=26 +[2018-06-11 16:31:23 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:31:23 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:31:23 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:31:49 #2825.1] TRACE check fd=7 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=8 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=9 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=10 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=11 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=12 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=13 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=14 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=15 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=16 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=17 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=18 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=19 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=20 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=21 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=22 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=23 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=24 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=25 +[2018-06-11 16:31:49 #2825.1] TRACE check fd=26 +[2018-06-11 16:31:53 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:31:53 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:31:53 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:32:19 #2825.1] TRACE check fd=7 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=8 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=9 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=10 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=11 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=12 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=13 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=14 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=15 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=16 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=17 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=18 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=19 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=20 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=21 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=22 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=23 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=24 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=25 +[2018-06-11 16:32:19 #2825.1] TRACE check fd=26 +[2018-06-11 16:32:23 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:32:23 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:32:23 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:32:49 #2825.1] TRACE check fd=7 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=8 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=9 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=10 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=11 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=12 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=13 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=14 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=15 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=16 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=17 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=18 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=19 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=20 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=21 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=22 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=23 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=24 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=25 +[2018-06-11 16:32:49 #2825.1] TRACE check fd=26 +[2018-06-11 16:32:53 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:32:53 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:32:53 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:33:19 #2825.1] TRACE check fd=7 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=8 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=9 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=10 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=11 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=12 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=13 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=14 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=15 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=16 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=17 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=18 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=19 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=20 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=21 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=22 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=23 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=24 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=25 +[2018-06-11 16:33:19 #2825.1] TRACE check fd=26 +[2018-06-11 16:33:23 #2825.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:33:23 #2825.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:33:23 #2825.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:33:30 @2843.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:33:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:33:32 #2843.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:33:32 #2843.0] TRACE send string package, size=514 bytes. +[2018-06-11 16:33:32 #2843.0] TRACE dispatch, type=10|len=514 + +[2018-06-11 16:33:32 *2851.0] TRACE httpRequest 514 bytes: +--------------------------------------- +GET / HTTP/1.1 +Host: 192.168.7.197:9503 +Connection: Upgrade +Pragma: no-cache +Cache-Control: no-cache +Upgrade: websocket +Origin: http://192.168.7.196 +Sec-WebSocket-Version: 13 +User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 +Accept-Encoding: gzip, deflate +Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,zh-TW;q=0.7 +Sec-WebSocket-Key: zrqH25YxvlBlCmwU9p7rvQ== +Sec-We +[2018-06-11 16:33:32 *2851.0] TRACE websocket header len:189 +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: YjMbFHoRPmo0aPxj3u88IUwDhBI= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + + +[2018-06-11 16:33:32 *2851.0] TRACE [Worker] send: sendn=201|type=0|content=HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: YjMbFHoRPmo0aPxj3u88IUwDhBI= +Sec-WebSocket-Version: 13 +Server: swoole-websocket-server + + +[2018-06-11 16:33:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:33:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:33:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:34:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:34:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:34:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:34:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:34:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:34:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:34:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:34:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:34:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:34:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:34:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:34:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:34:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:34:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:34:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:34:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:35:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:35:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:35:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:35:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:35:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:35:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:35:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:35:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:35:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:35:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:35:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:35:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:35:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:35:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:35:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:35:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:36:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:36:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:36:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:36:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:36:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:36:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:36:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:36:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:36:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:36:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:36:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:36:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:36:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:36:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:36:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:36:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:37:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:37:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:37:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:37:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:37:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:37:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:37:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:37:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:37:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:37:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:37:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:37:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:37:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:37:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:37:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:37:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:38:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:38:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:38:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:38:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:38:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:38:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:38:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:38:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:38:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:38:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:38:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:38:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:38:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:38:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:38:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:38:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:39:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:39:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:39:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:39:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:39:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:39:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:39:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:39:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:39:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:39:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:39:32 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:39:32 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:39:32 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:39:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:39:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:39:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:40:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:40:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:40:02 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:40:02 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:40:02 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:40:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:40:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:40:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:40:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:40:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:40:33 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:40:33 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:40:33 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:40:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:40:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:40:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:41:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:41:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:41:03 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:41:03 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:41:03 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:41:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:41:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:41:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:41:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:41:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:41:33 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:41:33 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:41:33 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:41:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:41:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:41:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:42:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:42:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:42:03 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:42:03 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:42:03 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:42:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:42:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:42:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:42:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:42:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:42:33 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:42:33 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:42:33 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:42:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:42:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:42:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:43:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:43:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:43:03 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:43:03 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:43:03 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:43:09 #2843.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-11 16:43:09 #2843.0] TRACE Close Event.fd=27|from=0 +[2018-06-11 16:43:09 #2843.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-11 16:43:23 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:43:23 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:43:23 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:43:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:43:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:43:33 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:43:33 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:43:33 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:43:34 #2843.1] TRACE [Master] Accept new connection. maxfd=26|reactor_id=1|conn=27 +[2018-06-11 16:43:34 #2843.0] TRACE send string package, size=6 bytes. +[2018-06-11 16:43:34 #2843.0] TRACE dispatch, type=10|len=6 + +[2018-06-11 16:43:53 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:43:53 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:43:53 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:44:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=8 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=9 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=10 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=11 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=12 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=13 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=14 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=15 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=16 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=17 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=18 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=19 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=20 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=21 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=22 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=23 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=24 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=25 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=26 +[2018-06-11 16:44:00 #2843.1] TRACE check fd=27 +[2018-06-11 16:44:03 #2843.0] TRACE header_length=6, payload_length=21 +[2018-06-11 16:44:03 #2843.0] TRACE send string package, size=23 bytes. +[2018-06-11 16:44:03 #2843.0] TRACE dispatch, type=10|len=23 + +[2018-06-11 16:44:08 #2843.0] TRACE header_length=6, payload_length=2 +[2018-06-11 16:44:08 #2843.0] TRACE Close Event.FD=26|From=0 +[2018-06-11 16:44:08 #2843.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:44:16 #2843.0] TRACE Close Event.fd=27|from=0 +[2018-06-11 16:44:16 #2843.0] TRACE set_maxfd=26|close_fd=27 + +[2018-06-11 16:44:17 #2843.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:44:17 #2843.0] TRACE send string package, size=6 bytes. +[2018-06-11 16:44:17 #2843.0] TRACE dispatch, type=10|len=6 + +[2018-06-11 16:44:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=8 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=9 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=10 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=11 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=12 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=13 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=14 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=15 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=16 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=17 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=18 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=19 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=20 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=21 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=22 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=23 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=24 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=25 +[2018-06-11 16:44:30 #2843.1] TRACE check fd=26 +[2018-06-11 16:44:52 #2843.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:44:52 #2843.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:44:53 #2843.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:44:53 #2843.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:44:53 #2843.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:44:53 *2852.1] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:44:53 #2843.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:44:53 #2843.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:45:00 #2843.1] TRACE check fd=7 +[2018-06-11 16:45:30 #2843.1] TRACE check fd=7 +[2018-06-11 16:45:48 @2880.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:45:48 #2880.1] TRACE check fd=7 +[2018-06-11 16:45:53 #2880.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:45:53 #2880.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:45:53 #2880.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:45:53 *2888.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:45:53 #2880.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:45:53 #2880.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:46:18 #2880.1] TRACE check fd=7 +[2018-06-11 16:46:48 #2880.1] TRACE check fd=7 +[2018-06-11 16:47:18 #2880.1] TRACE check fd=7 +[2018-06-11 16:47:48 #2880.1] TRACE check fd=7 +[2018-06-11 16:48:18 #2880.1] TRACE check fd=7 +[2018-06-11 16:48:48 #2880.1] TRACE check fd=7 +[2018-06-11 16:49:18 #2880.1] TRACE check fd=7 +[2018-06-11 16:49:48 #2880.1] TRACE check fd=7 +[2018-06-11 16:49:54 @2899.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:49:54 #2899.1] TRACE check fd=7 +[2018-06-11 16:49:59 #2899.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:49:59 #2899.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:49:59 #2899.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:49:59 *2907.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:49:59 #2899.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:49:59 #2899.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:50:24 #2899.1] TRACE check fd=7 +[2018-06-11 16:50:47 @2918.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:50:47 #2918.1] TRACE check fd=7 +[2018-06-11 16:50:54 #2918.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:50:54 #2918.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:50:54 #2918.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:50:54 *2926.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:50:54 #2918.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:50:54 #2918.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:51:17 #2918.1] TRACE check fd=7 +[2018-06-11 16:51:30 @2937.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:51:30 #2937.1] TRACE check fd=7 +[2018-06-11 16:51:33 #2937.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:51:33 #2937.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:51:33 #2937.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:51:33 *2945.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:51:33 #2937.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:51:33 #2937.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:52:00 #2937.1] TRACE check fd=7 +[2018-06-11 16:52:30 #2937.1] TRACE check fd=7 +[2018-06-11 16:52:43 @2956.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:52:43 #2956.1] TRACE check fd=7 +[2018-06-11 16:52:46 #2956.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:52:46 #2956.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:52:46 #2956.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:52:46 *2964.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:52:46 #2956.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:52:46 #2956.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:53:13 #2956.1] TRACE check fd=7 +[2018-06-11 16:53:43 #2956.1] TRACE check fd=7 +[2018-06-11 16:54:13 #2956.1] TRACE check fd=7 +[2018-06-11 16:54:43 #2956.1] TRACE check fd=7 +[2018-06-11 16:55:13 #2956.1] TRACE check fd=7 +[2018-06-11 16:55:43 #2956.1] TRACE check fd=7 +[2018-06-11 16:56:13 #2956.1] TRACE check fd=7 +[2018-06-11 16:56:43 #2956.1] TRACE check fd=7 +[2018-06-11 16:57:13 #2956.1] TRACE check fd=7 +[2018-06-11 16:57:34 @2975.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 16:57:34 #2975.1] TRACE check fd=7 +[2018-06-11 16:57:39 #2975.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 16:57:39 #2975.0] TRACE send string package, size=51 bytes. +[2018-06-11 16:57:39 #2975.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 16:57:39 *2983.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 16:57:39 #2975.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 16:57:39 #2975.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 16:58:04 #2975.1] TRACE check fd=7 +[2018-06-11 16:58:34 #2975.1] TRACE check fd=7 +[2018-06-11 16:59:04 #2975.1] TRACE check fd=7 +[2018-06-11 16:59:34 #2975.1] TRACE check fd=7 +[2018-06-11 17:00:04 #2975.1] TRACE check fd=7 +[2018-06-11 17:00:47 @3002.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:00:47 #3002.1] TRACE check fd=7 +[2018-06-11 17:00:51 #3002.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:00:51 #3002.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:00:51 #3002.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:00:51 *3010.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 17:00:51 #3002.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:00:51 #3002.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:01:17 #3002.1] TRACE check fd=7 +[2018-06-11 17:01:47 #3002.1] TRACE check fd=7 +[2018-06-11 17:02:17 #3002.1] TRACE check fd=7 +[2018-06-11 17:02:22 @3021.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:02:22 #3021.1] TRACE check fd=7 +[2018-06-11 17:02:26 #3021.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:02:26 #3021.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:02:26 #3021.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:02:26 *3029.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 17:02:26 #3021.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:02:26 #3021.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:02:50 @3040.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:02:50 #3040.1] TRACE check fd=7 +[2018-06-11 17:02:53 #3040.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:02:53 #3040.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:02:53 #3040.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:02:53 *3048.0] TRACE [Worker] send: sendn=23|type=0|content= +[2018-06-11 17:02:53 #3040.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:02:53 #3040.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:03:20 #3040.1] TRACE check fd=7 +[2018-06-11 17:03:50 #3040.1] TRACE check fd=7 +[2018-06-11 17:04:20 #3040.1] TRACE check fd=7 +[2018-06-11 17:04:44 @3059.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:04:44 #3059.1] TRACE check fd=7 +[2018-06-11 17:04:48 #3059.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:04:48 #3059.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:04:48 #3059.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:04:48 *3067.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:04:48 #3059.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:04:48 #3059.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:05:14 #3059.1] TRACE check fd=7 +[2018-06-11 17:05:44 #3059.1] TRACE check fd=7 +[2018-06-11 17:06:14 #3059.1] TRACE check fd=7 +[2018-06-11 17:06:24 @3078.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:06:25 #3078.1] TRACE check fd=7 +[2018-06-11 17:06:29 #3078.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:06:29 #3078.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:06:29 #3078.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:06:29 ^3082.2] ERROR zm_deactivate_swoole (ERROR 503): Fatal error: Uncaught Error: Class 'Game\App\tcp\Person' not found in /apps/swoole-game-protobuf/app/tcp/TcpTest.php:19 +Stack trace: +#0 /apps/swoole-game-protobuf/core/Dispatch.php(112): Game\App\tcp\TcpTest->exec() +#1 /apps/swoole-game-protobuf/core/BaseServer.php(419): Game\Core\Dispatch->exec() +#2 /apps/swoole-game-protobuf/core/BaseServer.php(377): Game\Core\BaseServer->dispatch(Array) +#3 /apps/swoole-game-protobuf/core/BaseServer.php(323): Game\Core\BaseServer->tcpWor +[2018-06-11 17:06:29 $3079.0] WARNING swManager_check_exit_status: worker#2 abnormal exit, status=255, signal=0 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=7 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=8 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=9 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=10 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=11 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=12 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=13 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=14 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=15 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=16 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=17 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=18 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=19 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=20 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=21 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=22 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=23 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=24 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=25 +[2018-06-11 17:06:55 #3078.1] TRACE check fd=26 +[2018-06-11 17:07:11 @3098.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:07:11 #3098.1] TRACE check fd=7 +[2018-06-11 17:07:15 #3098.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:07:15 #3098.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:07:15 #3098.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:07:15 *3106.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:07:15 #3098.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:07:15 #3098.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:07:41 #3098.1] TRACE check fd=7 +[2018-06-11 17:08:11 #3098.1] TRACE check fd=7 +[2018-06-11 17:08:42 @3117.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:08:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:08:48 #3117.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:08:48 #3117.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:08:48 #3117.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:08:48 *3125.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:08:48 #3117.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:08:48 #3117.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:09:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:09:37 #3117.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:09:37 #3117.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:09:37 #3117.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:09:37 *3126.1] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:09:37 #3117.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:09:37 #3117.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:09:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:10:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:10:37 #3117.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:10:37 #3117.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:10:37 #3117.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:10:37 *3125.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:10:37 #3117.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:10:37 #3117.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:10:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:10:46 #3117.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:10:46 #3117.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:10:46 #3117.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:10:46 *3126.1] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:10:46 #3117.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:10:46 #3117.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:11:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:11:40 #3117.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:11:40 #3117.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:11:40 #3117.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:11:40 *3125.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:11:40 #3117.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:11:40 #3117.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:11:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:12:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:12:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:13:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:13:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:14:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:14:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:15:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:15:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:16:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:16:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:17:12 #3117.1] TRACE check fd=7 +[2018-06-11 17:17:42 #3117.1] TRACE check fd=7 +[2018-06-11 17:17:54 @3140.0] TRACE hb timer start, time: 30 live time:60 +[2018-06-11 17:17:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:17:58 #3140.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:17:58 #3140.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:17:58 #3140.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:17:58 *3148.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:17:58 #3140.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:17:58 #3140.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:18:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:18:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:19:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:19:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:20:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:20:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:21:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:21:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:22:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:22:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:23:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:23:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:24:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:24:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:25:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:25:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:26:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:26:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:27:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:27:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:28:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:28:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:29:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:29:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:30:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:30:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:31:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:31:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:32:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:32:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:33:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:33:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:34:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:34:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:35:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:35:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:36:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:36:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:37:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:37:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:38:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:38:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:39:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:39:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:40:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:40:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:41:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:41:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:42:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:42:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:43:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:43:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:44:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:44:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:45:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:45:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:46:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:46:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:47:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:47:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:48:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:48:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:49:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:49:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:50:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:50:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:51:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:51:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:52:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:52:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:53:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:53:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:54:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:54:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:55:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:55:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:56:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:56:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:57:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:57:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:58:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:58:54 #3140.1] TRACE check fd=7 +[2018-06-11 17:59:24 #3140.1] TRACE check fd=7 +[2018-06-11 17:59:33 #3140.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:59:33 #3140.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:59:33 #3140.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:59:33 *3149.1] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:59:33 #3140.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:59:33 #3140.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:59:51 #3140.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 17:59:51 #3140.0] TRACE send string package, size=51 bytes. +[2018-06-11 17:59:51 #3140.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 17:59:51 *3148.0] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 17:59:51 #3140.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 17:59:51 #3140.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 17:59:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:00:10 #3140.1] TRACE [Master] Accept new connection. maxfd=7|reactor_id=1|conn=26 +[2018-06-11 18:00:10 #3140.0] TRACE send string package, size=51 bytes. +[2018-06-11 18:00:10 #3140.0] TRACE dispatch, type=10|len=51 + +[2018-06-11 18:00:10 *3149.1] TRACE [Worker] send: sendn=63|type=0|content= +[2018-06-11 18:00:10 #3140.0] TRACE Close Event.fd=26|from=0 +[2018-06-11 18:00:10 #3140.0] TRACE set_maxfd=25|close_fd=26 + +[2018-06-11 18:00:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:00:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:01:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:01:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:02:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:02:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:03:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:03:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:04:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:04:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:05:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:05:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:06:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:06:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:07:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:07:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:08:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:08:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:09:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:09:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:10:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:10:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:11:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:11:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:12:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:12:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:13:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:13:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:14:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:14:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:15:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:15:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:16:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:16:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:17:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:17:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:18:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:18:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:19:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:19:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:20:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:20:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:21:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:21:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:22:24 #3140.1] TRACE check fd=7 +[2018-06-11 18:22:54 #3140.1] TRACE check fd=7 +[2018-06-11 18:23:24 #3140.1] TRACE check fd=7 diff --git a/vendor/autoload.php b/vendor/autoload.php new file mode 100755 index 0000000..0172552 --- /dev/null +++ b/vendor/autoload.php @@ -0,0 +1,7 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier + * @author Jordi Boggiano + * @see http://www.php-fig.org/psr/psr-0/ + * @see http://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + // PSR-4 + private $prefixLengthsPsr4 = array(); + private $prefixDirsPsr4 = array(); + private $fallbackDirsPsr4 = array(); + + // PSR-0 + private $prefixesPsr0 = array(); + private $fallbackDirsPsr0 = array(); + + private $useIncludePath = false; + private $classMap = array(); + private $classMapAuthoritative = false; + private $missingClasses = array(); + private $apcuPrefix; + + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', $this->prefixesPsr0); + } + + return array(); + } + + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param array $classMap Class to filename map + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 base directories + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + } + + /** + * Unregisters this instance as an autoloader. + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return bool|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + includeFile($file); + + return true; + } + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath.'\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } +} + +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + */ +function includeFile($file) +{ + include $file; +} diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE new file mode 100755 index 0000000..f27399a --- /dev/null +++ b/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php new file mode 100755 index 0000000..7a91153 --- /dev/null +++ b/vendor/composer/autoload_classmap.php @@ -0,0 +1,9 @@ + array($baseDir . '/lib'), + 'Game\\Core\\' => array($baseDir . '/core'), + 'Game\\Conf\\' => array($baseDir . '/conf'), + 'Game\\App\\' => array($baseDir . '/app'), +); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php new file mode 100755 index 0000000..9fff884 --- /dev/null +++ b/vendor/composer/autoload_real.php @@ -0,0 +1,52 @@ += 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require_once __DIR__ . '/autoload_static.php'; + + call_user_func(\Composer\Autoload\ComposerStaticInita20b55251dd266fbe01ce00292b5839f::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } + + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } + + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } + } + + $loader->register(true); + + return $loader; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php new file mode 100755 index 0000000..a86de16 --- /dev/null +++ b/vendor/composer/autoload_static.php @@ -0,0 +1,46 @@ + + array ( + 'Game\\Lib\\' => 9, + 'Game\\Core\\' => 10, + 'Game\\Conf\\' => 10, + 'Game\\App\\' => 9, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'Game\\Lib\\' => + array ( + 0 => __DIR__ . '/../..' . '/lib', + ), + 'Game\\Core\\' => + array ( + 0 => __DIR__ . '/../..' . '/core', + ), + 'Game\\Conf\\' => + array ( + 0 => __DIR__ . '/../..' . '/conf', + ), + 'Game\\App\\' => + array ( + 0 => __DIR__ . '/../..' . '/app', + ), + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInita20b55251dd266fbe01ce00292b5839f::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInita20b55251dd266fbe01ce00292b5839f::$prefixDirsPsr4; + + }, null, ClassLoader::class); + } +} diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json new file mode 100755 index 0000000..fe51488 --- /dev/null +++ b/vendor/composer/installed.json @@ -0,0 +1 @@ +[]